.login-container {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Section */
.login-hero {
    position: relative;
    z-index: 2;
    color: var(--text);
    max-width: 500px;
    padding: 2rem;
}

.login-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--accent);
}

.login-hero-description {
    font-size: 1.125rem;
    opacity: 0.85;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Form Container */
.login-form-container {
    width: 100%;
    max-width: 450px;
    padding: 2rem;
}

/* Translucent Card */
.login-form-card {
    background: rgba(255, 255, 255, 0.35);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
}

/* Accent top line */
.login-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
    opacity: 0.85;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

/* Header */
.login-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-logo {
    width: 80px;
    height: auto;
    margin-bottom: 15px;
    cursor: pointer;
}

.login-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.login-subtitle {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
}

/* Inputs */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.75rem;
    display: block;
}

.input-group-custom {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    z-index: 2;
    font-size: 1.1rem;
}

.form-control-custom {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
    transition: 0.3s ease;
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(199, 43, 50, 0.15);
}

/* Footer */
.login-footer {
    text-align: center;
}

.back-home {
    text-decoration: none;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    transition: 0.2s ease;
}

.back-home:hover {
    text-decoration: underline;
}

/* Notification Toast */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateX(100%);
    transition: 0.3s ease;
    z-index: 1000;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left: 4px solid #28a745;
    color: #28a745;
}

.notification-error {
    border-left: 4px solid #dc3545;
    color: #dc3545;
}

/* Responsive */
@media (max-width: 992px) {
    .login-form-container {
        padding: 1rem;
    }
    .login-form-card {
        padding: 2rem 1.5rem;
    }
}