.auth-form-header {
    text-align: center;
    margin-bottom: 28px;
}

.auth-form-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #f0fae0;
    border: 1.5px solid #a7d5a4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.auth-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--eslomio-dark);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.auth-subtitle {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* Fields */
.auth-field {
    margin-bottom: 18px;
}
.auth-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.auth-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 7px;
}
.auth-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 7px;
}
.auth-input {
    display: block;
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    color: var(--eslomio-dark);
    background: #fafbfc;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
    outline: none;
    box-sizing: border-box;
}
.auth-input:focus {
    border-color: var(--eslomio-brand);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(77,184,72,0.18);
}
.auth-input::placeholder { color: #9ca3af; }

/* Checkbox */
.auth-check-row {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
}
.auth-check-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--eslomio-brand);
    cursor: pointer;
    flex-shrink: 0;
}
.auth-check-label {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    cursor: pointer;
}

/* Submit */
.auth-submit-btn {
    width: 100%;
    padding: 13px;
    background: var(--eslomio-brand);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.18s, transform 0.12s, box-shadow 0.18s;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 16px rgba(77,184,72,0.3);
}
.auth-submit-btn:hover {
    background: var(--eslomio-brand-dark);
    box-shadow: 0 6px 20px rgba(77,184,72,0.4);
    transform: translateY(-1px);
}
.auth-submit-btn:active { transform: translateY(0); }

/* Links */
.auth-link {
    color: var(--eslomio-brand);
    font-weight: 600;
    text-decoration: none;
}
.auth-link:hover { text-decoration: underline; }
.auth-link-sm {
    font-size: 12.5px;
    color: var(--eslomio-brand);
    text-decoration: none;
    font-weight: 500;
}
.auth-link-sm:hover { text-decoration: underline; }
.auth-switch {
    text-align: center;
    font-size: 13.5px;
    color: #6b7280;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0 14px;
    color: #9ca3af;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
}
.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.auth-microsoft-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    color: #374151;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s, border-color .15s, box-shadow .15s;
    font-family: 'Poppins', sans-serif;
}
.auth-microsoft-btn:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

@media (max-width: 480px) {
    .auth-field-row { grid-template-columns: 1fr; gap: 0; }
}

