/* Login Page Styles - Matching main design system */

.login-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.login-container {
    background: var(--bg, #ffffff);
    border-radius: var(--radius, 14px);
    box-shadow: 0 20px 60px rgba(16,16,16,0.06);
    overflow: hidden;
    max-width: 400px;
    width: 100%;
    animation: slideUp 0.5s ease-out;
    border: 1px solid rgba(16,16,16,0.03);
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.login-form-container,
.register-form-container {
    padding: 40px;
}

.login-form-container h1,
.register-form-container h1 {
    text-align: center;
    font-family: 'Montserrat', 'Avant Garde', sans-serif;
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--text, #111214);
    font-weight: 700;
}

.login-subtitle {
    text-align: center;
    color: var(--muted, #6b6f73);
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 400;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text, #111214);
    font-size: 14px;
}

.form-group input {
    padding: 12px 16px;
    border: 1px solid rgba(16,16,16,0.06);
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--card, #f7f7f8);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent, #FF6100);
    box-shadow: 0 0 0 3px rgba(255, 97, 0, 0.1);
}

.login-btn {
    background: var(--text, #111214);
    color: var(--bg, #ffffff);
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 10px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16,16,16,0.08);
}

.login-btn:active {
    transform: translateY(0);
}

.login-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(16,16,16,0.04);
}

.login-footer p {
    margin: 8px 0;
    color: var(--muted, #6b6f73);
    font-size: 14px;
}

.login-footer a {
    color: var(--accent, #FF6100);
    text-decoration: none;
    font-weight: 600;
}

.login-footer a:hover {
    text-decoration: underline;
}

/* Notification Styles - Matching card design */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--bg, #ffffff);
    border: 2px solid var(--accent, #FF6100);
    border-radius: var(--radius, 14px);
    padding: 20px;
    box-shadow: 0 4px 20px rgba(16,16,16,0.06);
    z-index: 9999;
    max-width: 300px;
    animation: slideIn 0.3s ease-out;
    display: none;
    border: 1px solid rgba(16,16,16,0.03);
}

.notification.error {
    border-color: #e74c3c;
}

.notification.success {
    border-color: #2ecc71;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Profile Styles - Matching form design */
.profile-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-group label {
    font-weight: 600;
    color: var(--text, #111214);
    font-size: 14px;
}

.info-value {
    padding: 12px 16px;
    background: var(--card, #f7f7f8);
    border-radius: 10px;
    border: 1px solid rgba(16,16,16,0.06);
    color: var(--muted, #6b6f73);
    font-size: 16px;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

/* Responsive - Matching main breakpoints */
@media (max-width: 480px) {
    .login-container {
        margin: 20px;
        max-width: none;
    }

    .login-form-container,
    .register-form-container {
        padding: 30px 20px;
    }

    .login-form-container h1,
    .register-form-container h1 {
        font-size: 24px;
    }
}