.login-container {
    max-width: 380px;
    margin: 80px auto;
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.login-container h1 {
    font-size: 22px;
    margin-bottom: 4px;
}
.login-subtitle {
    color: #86868b;
    font-size: 14px;
    margin-bottom: 24px;
}
.login-form { display: flex; flex-direction: column; gap: 12px; }
.login-form input {
    padding: 10px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
}
.login-form input:focus { border-color: #2e7d32; }
.login-btn {
    padding: 10px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    background: #2e7d32;
    color: white;
    transition: background 0.2s;
}
.login-btn:hover { background: #1b5e20; }
.login-btn:disabled { background: #a8a8a8; cursor: not-allowed; }
.login-error {
    color: #ff3b30;
    font-size: 13px;
    min-height: 20px;
}
.login-success {
    color: #34c759;
    font-size: 13px;
    min-height: 20px;
}
.login-toggle {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: #86868b;
}
.login-toggle a {
    color: #2e7d32;
    cursor: pointer;
    text-decoration: none;
}
.login-toggle a:hover { text-decoration: underline; }
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    color: #1d1d1f;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    margin-bottom: 8px;
}
.social-btn:hover { background: #f5f5f7; }
.social-btn.google {
    border: 2px solid #4285F4;
    font-weight: 600;
    padding: 14px;
    font-size: 16px;
}
.social-btn.google:hover {
    background: #f0f6ff;
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.2);
}
.google-icon { flex-shrink: 0; }
.social-btn.facebook { background: #1877f2; color: white; border-color: #1877f2; }
.social-btn.facebook:hover { background: #166fe5; }
.divider {
    text-align: center;
    margin: 16px 0;
    position: relative;
}
.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    border-top: 1px solid #e0e0e0;
}
.divider span {
    background: white;
    padding: 0 12px;
    position: relative;
    color: #86868b;
    font-size: 13px;
}
.consent-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #555;
    cursor: pointer;
}
.consent-label a {
    color: #2e7d32;
    text-decoration: none;
}
.consent-label a:hover { text-decoration: underline; }
.forgot-link-wrap {
    text-align: center;
    margin-top: 8px;
}
.forgot-link {
    color: #2e7d32;
    cursor: pointer;
    font-size: 13px;
    text-decoration: none;
}
.forgot-link:hover { text-decoration: underline; }
