@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,700;1,400;1,500&family=Poppins:ital,wght@0,200;0,600;1,700&display=swap');


@import url('https://fonts.googleapis.com/css2?fmily=Open+Sans:wght@400;500;600;700&display=swap');
 @import url('/font-awesome-4.6.3/css/font-awesome.min.css');

 *
 {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 }
 :root
 {
    --grey: #F1F0F6;
    --dark-grey:#8D8D8D;
    --light: #fff;
    --dark:#000;
    --green:#81D43A;
    --light-green:#E3FFCB;
    --blue:#1775F1;
    --light-blue:#D0E4FF;
    --dark-blue:#0C5FCD;
    --red: #FC3B56;
 }

:root{
    --main-color:skyblue;
    --black: #13131a;
    --border: .1rem solid rgba(255,255,255, .3);
}
*{
    font-family: 'Open Sans', sans-serif;

    font-family: 'Poppins', sans-serif;

    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none; border: none;
    transition: 0.3s linear;

}
html
{
    /*font-size: 62.5%;*/
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}
html::-webkit-scrollbar{
    width: .8rem;
}
html::-webkit-scrollbar-track{
    background: transparent;
}
html::-webkit-scrollbar-thumb{
    background: #fff;
    border-radius: 5rem;
}
body
{
    /*background-color: rgb(228, 224, 224);*/
    background:var(--grey);
}
    
     .content
        {
           position: relative;
           padding-top: 80px;
        }
        
        
        /* General Form Styling */
form {
    max-width: 400px;
    margin: auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.login-form h1 {
    /* background: linear-gradient(135deg, #74bd54, #00c6ff);  */
    color: #000;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    /* box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2); */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease-in-out;
}

/* On Hover Effect */
.login-form h1:hover {
    transform: scale(1.05);
    box-shadow: 4px 6px 15px rgba(0, 0, 0, 0.3);
}


/* Input Fields */
input[type="text"], input[type="email"], input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 2px solid black;
    border-radius: 5px;
    outline: none;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}


input:focus {
    border-color: #74bd54;
    /* box-shadow: 0 0 8px rgba(46, 204, 113, 0.5); */
}

/* Icons Inside Input Fields */
.input-container {
    position: relative;
}

.input-container i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
}

.input-container input {
    padding-left: 35px;
}

/* Submit Button */
.login-form button {
    width: 100%;
    padding: 12px;
    background-color: #74bd54;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #2980b9;
}

/* Tooltip Styling */
.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 140px;
    background-color: #74bd54;
    color: #fff;
    text-align: center;
    padding: 5px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}



        .login-form .fa-eye
{
   position:absolute;
   right: 41%;
   top: 60%;
   cursor: pointer;
}
/* .error
{
    color:#ff0001;
} */
.input-box {
    margin-bottom: 20px;
}

.input-box input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}
.input-box select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.error {
    color: #ff0001;
    margin-top: -25px;
}



       
        .loginpage-footer
        {
            position: relative;
        }
        
        footer
        {
            
            width: 600px;
            height: 100px;
            padding: 2rem 1rem;
            margin: 50px auto;
            background-color:  #e4e4e4;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 20px 35px rgba( 0, 0, 0, 0.1);
        }

/* Media queries for responsiveness */
@media screen and (max-width: 768px) {
    .header {
        height: 120px; /* Adjust header height for smaller screens */
    }

    .header .logo img {
        width: 100px; 
        height: 80px;
        margin-left: 1rem;
        margin-top: 6px;
        margin-bottom: 6px;
    }

    .header .nav ul li {
        margin-top: 10px;
    }

    .login-form {
        width: 80%; /* Adjust form width for smaller screens */
        margin: 30px auto; /* Reduce margin for smaller screens */
        margin-top:50px
    }

    .login-form h1 {
        font-size: 1.5rem; /* Adjust heading font size for smaller screens */
        margin-bottom: 1rem;
    }

    .input-box input {
        width: 100%; 
        padding: 10px; 
        height: 40px; 
    }

    .login-form button {
        padding: 15px 0; 
        height: 40px; 
        font-size: 1rem; 
    }
}

@media screen and (max-width: 576px) {
    .header {
        height: 80px; 
    }

    .header .logo img {
        width: 60px; 
        height: 60px;
        margin-left: 0.5rem;
        margin-top: 8px;
        margin-bottom: 8px;
    }

    .header .nav ul li {
        margin-right: 5px;
        padding-right: 5px;
    }

    .login-form {
        width: 90%;
        /* margin: 20px auto; */
        /* margin-top: 20px; */
    }

    .login-form h1 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    .login-form form input
    {
        padding: 16px;
        height: 50px; 
        border-radius: 10px;
    }  

    .login-form button {
        padding: 16px;
        height: 50px; 
        font-size: 0.9rem; 
        text-align: center;
        align-items: center;
    }
    .login-form .fa-eye
    {
       position:absolute;
       right: 21%;
       top: 60%;
       cursor: pointer;
    }
}

      
