/* Employee Login Specific Styles */

/* Main Container to center the login card */
main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    /* Ensure it takes up enough screen space */
    padding: 20px;
    box-sizing: border-box;
}

/* Glassmorphic Login Card */
.login-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Subtle border */
    border-radius: 20px;
    padding: 60px 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    /* Deep shadow */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Optional: Add a subtle glow or gradient blob behind or inside if needed, 
   but keeping it clean for "professional" look first */

.login-header {
    margin-bottom: 32px;
}

.login-title {
    font-family: 'Montserrat', sans-serif;
    /* Using font from style.css */
    font-weight: 700;
    font-size: 28px;
    color: #ffffff;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
}

.login-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #a0a0a0;
    margin: 0;
}

/* Form Styles */
.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 13px;
    color: #cfcfcf;
    margin-bottom: 8px;
    font-weight: 500;
    margin-left: 4px;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 14px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: rgba(232, 170, 86, 0.6);
    /* Gold accent */
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 4px rgba(232, 170, 86, 0.1);
}

.form-input::placeholder {
    color: #666;
}

/* Login Button - Matching the Gold Gradient from indexstyle.css */
.btn-login {
    margin-top: 10px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, #f3e3c3, #eec063);
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #0d0d0d;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(232, 170, 86, 0.2);
    filter: brightness(1.05);
    /* Slightly lighter */
}

.btn-login:active {
    transform: translateY(0);
}

/* Footer Links */
.login-footer {
    margin-top: 24px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.login-link {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.login-link:hover {
    color: #eec063;
    /* Gold hover */
}

/* Responsive */
@media (max-width: 480px) {
    .login-card {
        padding: 40px 25px;
    }

    .login-title {
        font-size: 24px;
    }
}