/* Login Page Specific Styles */

/* Full screen background with overlay */
.fullscreen-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.login-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    border-radius: 8px;
}

/* Form styling - transparent inputs with underline */
.auth-login-form .form-control {
    background-color: transparent !important;
    border: none !important;
    border-bottom: 1px solid #fff !important;
    border-radius: 0 !important;
    color: white;
}

.auth-login-form .form-control:focus {
    box-shadow: none !important;
    border-bottom: 1px solid #ddd !important;
}

/* Input group styling */
.input-group-text {
    background-color: transparent !important;
    border: none !important;
}

/* Placeholder styling for inputs */
#login::placeholder,
#password::placeholder {
    color: white !important;
    opacity: 1;
}

/* Welcome title styling */
.login-welcome-title {
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

/* Form labels styling */
.login-form-label {
    color: white;
}

/* Forgot password link styling */
.forgot-password-link {
    color: white;
}

/* Remember me label styling */
.remember-me-label {
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .login-overlay {
        padding: 1.5rem;
        max-width: 90%;
    }
}

/* Eye icon styling */
.password-toggle-icon {
    color: #fff !important;
    stroke: #fff !important;
}