/* Style for the login container */
#login-container {
    width: 300px;
    margin: 50px auto;
    padding: 20px;
    background-color: #f9f9f9; /* Light background */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    text-align: center;
}

/* Style for the heading */
#login-container h2 {
    color: #007BFF; /* Blue color */
    margin-bottom: 20px;
    font-size: 1.8em;
}

/* Style for the form labels */
#login-container label {
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 5px;
    text-align: left;
}

/* Style for input fields */
#login-container input {
    width: 100%;
    padding: 12px 2px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

/* Focus effect for input fields */
#login-container input:focus {
    border-color: #007BFF; /* Blue color */
    outline: none;
    
}

/* Style for the login button */
#login-container button {
    width: 100%;
    padding: 10px;
    background-color: #007BFF; /* Blue color */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

/* Hover effect for the login button */
#login-container button:hover {
    background-color: #0056b3; /* Darker blue */
}

/* Style for the register link */
#login-container p {
    margin-top: 15px;
    font-size: 14px;
    color: #333;
}

#login-container p a {
    color: #007BFF; /* Blue color */
    text-decoration: none;
    font-weight: bold;
}

#login-container p a:hover {
    text-decoration: underline;
}

/* Add responsiveness */
@media (max-width: 768px) {
    #login-container {
        width: 90%;
        padding: 15px;
    }
}
body{
background: #020024;
     background: linear-gradient(90deg,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    font-family: 'Segoe UI', Arial, sans-serif;
    }
header{
        height: 40px;
        width: 100%;
       
        display: flex;
        align-items: center;
        justify-content: space-between;

    }
img{
       height: 100px;
       width: 100px;
       margin-left: 200px;
       margin-top: 80px;
       border-radius: 50px;
       
    }
nav a{
        
        color:aliceblue;
        text-decoration: none;
        word-spacing: 10px;
       font-weight:bold;
       }
a:hover{
    
        border: none;
        padding: 16px 32px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
    }
    /* Login page container for employee */
#login-container {
    width: 340px;
    margin: 60px auto;
    padding: 30px 25px;
    background: #f0f8ff;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    font-family: Arial, sans-serif;
    text-align: center;
}

#login-container h2 {
    color: #007BFF;
    margin-bottom: 25px;
    font-size: 2em;
    font-weight: bold;
}

#login-container label {
    display: block;
    text-align: left;
    margin-bottom: 6px;
    color: #0056b3;
    font-weight: 600;
}

#login-container input,
#login-container select {
    width: 100%;
    padding: 10px;
    margin-bottom: 18px;
    border: 1px solid #b3d1ff;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s;
}

#login-container input:focus,
#login-container select:focus {
    border-color: #007BFF;
    outline: none;
}

#login-container button {
    width: 100%;
    padding: 12px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 10px;
}

#login-container button:hover {
    background-color: #0056b3;
}

#login-error {
    color: #dc3545;
    font-size: 15px;
    margin-top: 10px;
    display: none;
}

        