/* 

loginstyle.css file fore adminLogin
date: 5/12/2025

All styles for admin login







*/

/* Navbar begins */

*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    

}


/* Navbar stays fixed at the top */
.navbar {
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 999; /* Ensure it stays above other content */
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #2c3e50;
    padding: 10px 15px;
   
}

/* Logo alignment */
.logo img {
    z-index: 999;
    height: 50px;
    padding-left:  5px;
    cursor: pointer;
    text-decoration: none;
}

/* Title alignment */
.logoheader {
    z-index: 999;
    color: white;
    left: 100px;
    font-size: 25px;
    margin-left: -20px;
    text-decoration: none;
}

/* Navbar links */
.navbar ul {
    margin: 20px 30px;
    list-style: none;
    display: flex;
    justify-content: flex-end;
   
   
}

.navbar ul li{
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    position: relative;
}

.navbar ul li a{
 text-decoration:none;
 color:#ffffff;
 text-transform: uppercase;
 font-weight: bold;
}

/* small animation for hovering cursor  */
.navbar ul li::after{
    content: '';
    height: 3px;
    width: 0%;
    background: rgb(9, 89, 153); /* color of underline after hovering */
    position: absolute;
    left: 0;
    bottom: -8px; /* distance between text and line*/
    transition: 0.5s;
}

.navbar ul li:hover::after{
    width: 100%;
    
}

/* Add margin to the main content to avoid overlap with the fixed navbar */
.content {
    margin-top: 80px; /* Adjust based on navbar height */
    background-color: darkgray;
    height: 100vh;
    
}

.navbar h1{
    position:fixed ;
    color: #ffffff;
    cursor: pointer;
   
}

.navbar a{
    text-decoration: none;
    color:#ffffff
}

/* Hamber menu */
.checkbtn {
    display: block; /* Ensure it's always visible */
    font-size: 30px;
    color: white; 
    position: absolute;
    top: 25px;
    right: 85px;
    z-index: 999;
    cursor: pointer;

    display: none;
}
#check{
    display: none;
}


/* Navbar ends*/

/* Middle Page */
.background{
    background-color: #3f3e3e;
    height: 100vh;
}

.loginContainer{
    
    max-width: 1000px;
    width: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    position:relative;

}

.logintxt{
    margin-bottom: 10px;
    width: 500px;
}

.login{
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 50%;
    
}
.inputs{
  padding:5px;  
}

.loginbtn{
    font-weight: bold;
    font-size: large;
    background-color: #2c3e50;
    color: white; 
    margin-top: 40px;
    padding:20px;
    text-decoration: double;
    cursor: pointer;
}




/* Middle Page */