@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);
}
    .header
    {
        position: fixed;
        background-color: #035a76;
        width: 100%;
        height: 80px;
        margin-top: 5px;
        box-shadow: 50px;
        display: inline-flex;
        justify-content: space-between;
        z-index: 1000;

    }
     .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;
           padding-top: 80px;
        }
        /*.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
        {
            position: relative;
            width: 400px;
            height: auto;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
            margin: 30px auto;
            /* padding: 2rem 1rem; */
            text-align: center;

        }
        .login-form h1
        {
            font-size: 28px;
            color: #07001f;
            padding-top: 20px;
          
            margin-bottom: 1.2rem ;
        }
        .login-form form
        {
            padding-top: 20px;
        }
        .input-box {
    /* Add these styles to ensure visibility */
    display: flex;
    flex-direction: column;
    align-items: center;
}
        .login-form form input
        {
            width: 90%;
           outline: none;
           border: 1px solid #fff;
           padding: 10px 10px;
           margin-bottom: 20px;
           border-radius: 10px;
           background: #e4e4e4;
           visibility: visible;
        }
        .login-form form button
        {
            font-size: 1rem;
            margin-top: 5px;
            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 #74bd54;
        }
        .login-form .fa-eye
{
   position:absolute;
   right: 38%;
   top: 48%;
   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;
}

.error {
    color: #ff0001;
    margin-top: -25px;
}
/* .login-form {
    width: 600px;
    height: auto; 
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
    padding: 2rem 1rem;
    text-align: center;
} */


       
        .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;
    }

    .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;
    }

    .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;
    }
}

      
