@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;
    /* text-transform: capitalize; */
    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(--light);
}
    .header
    {
        background-color: #035a76;
        width: 100%;
        height: 80px;
        /* margin-top: 5px; */
        box-shadow: 50px;
        display: inline-flex;
        justify-content: space-between;

    }
     .header .logo img
     {
        width: 60px;
        height: 60px;
        margin-left: 2rem;
        margin-top: 8px;
     }
     .header .nav ul
     {
        list-style: none;
     }
     .header .nav ul li
     {
        display: inline-block;
        margin-right: 10px;
        padding-right: 10px;
        margin-top: 20px;
     }
     .header .nav ul li a
     {
        text-decoration: none;

        font-size: 30px;
        font-weight: 600;
     }
      .navbar-media
     {
        opacity: 0;
     }
     .content
        {
           position: relative;
        }
        /*.admin-form
        {
            width: 600px;
            height: 500px;
            padding: 2rem 1rem;
            margin: 50px auto;
            background-color: #fff;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 20px 35px rgba( 0, 0, 0, 0.1);
        }*/
        .login-form
        {
            width: 400px;
            height: 400px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
            margin: 50px auto;
            padding: 10px 10px;
            text-align: center;

        }
        .login-form h1
        {
            font-size: 28px;
            color: #07001f;
            padding-top: 20px;
          
            margin-bottom: 1.2rem ;
        }
        .login-form form
        {
            padding-top: 20px;
        }
        .login-form form input
        {
            width: 90%;
           outline: none;
           border: 1px solid #fff;
           padding: 10px 10px;
           margin-bottom: 20px;
           border-radius: 20px;
           background: #e4e4e4;
        }
        .login-form form button
        {
            font-size: 1rem;
            margin-top: 1.8rem;
            padding: 10px 0;
            border-radius: 20px;
            outline: none;
            border: none;
            width: 80%;
            background: #74bd54;
            color: #fff;
            cursor: pointer; 
        }
        .login-form form input:focus
        {
            border: 1px solid rgb(192, 192, 192);
        }
        .login-form .fa-eye
{
   position:absolute;
   right: 42%;
   top: 47%;
   cursor: pointer;
}
.forgot-btn
{
    text-align: right;
    margin-top: 10px;
}
.forgot-btn button
{
    border: none;
    background-color: transparent;
    outline: none;
    font-weight: 450;
    cursor: pointer;
    
}
.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: 100px;
    }

    .header .logo img {
        width: 80px;
        height: 80px;
        margin-left: 1rem;
        margin-top: 8px;
    }

    .header .nav ul li {
        margin-top: 10px;
    }

    .login-form {
        width: 80%;
        height: 500px;
        margin: 100px auto;
    }

    .login-form h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .login-form form input {
        width: 80%;
        outline: none;
        border: 1px solid #fff;
        padding: 20px 20px;
        margin-bottom: 20px;
        border-radius: 20px;
        background: #e4e4e4;
    }

    .login-form form button {
        font-size: 1rem;
        margin-top: 1.8rem;
        padding: 20px 0;
        border-radius: 20px;
        outline: none;
        border: none;
        width: 80%;
        background: #74bd54;
        color: #fff;
        cursor: pointer;
    }

    .login-form form input:focus {
        /* border: 1px solid rgb(192, 192, 192); */
        border: 1px solid #74bd54 
    }

    .login-form .fa-eye {
        position: absolute;
        left: 74%;
        top: 46%;
        cursor: pointer;
    }

    .forgot-btn {
        margin-top: 10px;
    }
    
    .forgot-btn button {
        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;
    }

    .header .nav ul li {
        margin-right: 5px;
        padding-right: 5px;
    }

    .login-form {
        width: 90%;
        height: 400px;
        margin: 20px auto;
        margin-top: 60px;
    }

    .login-form h1 {
        font-size: 1.8rem;
        margin-bottom: 10px auto;
    }

    .login-form form input
    {
        width: 100%;
        padding: 16px;
        height: 50px; 
        margin-bottom: 30px;
        border-radius: 10px;
    }  

    .login-form form button {
        width: 100%;
        padding: 16px;
        margin-top: 10px;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .login-form .fa-eye {
        top: 50%;
        left: 80%;
    }
}