/* LOGIN PAGE SPECIFIEKE STYLES */
.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 70px);
    padding: 40px 20px;
}

.login-container {
    width: 100%;
    max-width: 460px;
    padding: 50px 45px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    background: white;
    text-align: center;
    animation: slideUp 0.4s ease-out;
}

.login-container h2 {
    margin: 0 0 35px 0;
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: -0.5px;
}

.login-container .form-group {
    margin-bottom: 24px;
    text-align: left;
}

.login-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
    font-size: 14px;
}

.login-container input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #ffffff;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-container input:focus {
    border-color: var(--brand-primary);
    outline: none;
    box-shadow: var(--brand-focus-ring);
    background-color: #ffffff;
}

.login-container .forgot-password {
    display: block;
    text-align: right;
    margin: -10px 0 24px 0;
    font-size: 14px;
    color: var(--brand-primary);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.login-container .forgot-password:hover {
    color: var(--brand-secondary);
    text-decoration: underline;
}

.login-container .login-btn {
    width: 100%;
    padding: 14px 24px;
    background: var(--brand-gradient);
    border: none;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--brand-shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.login-container .login-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--brand-shadow-lg);
    background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-hover) 100%);
}

.login-container .login-btn:active {
    transform: translateY(0);
}

.error-message {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #fca5a5;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.15);
}

.error-message i {
    font-size: 16px;
}

/* Forgot Password Modal */
.forgot-modal-content {
    background: white;
    border-radius: 16px;
    padding: 45px 40px 35px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    animation: slideUp 0.3s ease-out;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.forgot-modal-icon {
    width: 70px;
    height: 70px;
    background: var(--brand-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--brand-shadow-md);
}

.forgot-modal-icon i {
    font-size: 28px;
    color: white;
}

.forgot-modal-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px;
}

.forgot-modal-content p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 25px;
}

.forgot-modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: var(--brand-gradient);
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--brand-shadow-md);
}

.forgot-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--brand-shadow-lg);
}

.forgot-modal-close {
    display: block;
    margin: 18px auto 0;
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
    transition: color 0.2s ease;
}

.forgot-modal-close:hover {
    color: #6b7280;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}