:root {
    --brand-blue: #152551;
    --premium-gold: #c5a059;
    --text-light: #777;
    --white: #ffffff;
}
.auth-form h2 { color: var(--brand-blue); font-size: 1.8rem; margin-bottom: 0.5rem; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.auth-form label { display: block; font-weight: 600; font-size: 0.85rem; color: var(--text-light); text-transform: uppercase; margin-bottom: 0.4rem; letter-spacing: 0.5px; }
.auth-form input, .auth-form select, .auth-form textarea {
    width: 100%; padding: 0.8rem; border: 1.5px solid #eee; border-radius: 10px; transition: all 0.3s; background: #fafafa;
}
.auth-form input:focus, .auth-form select:focus, .auth-form textarea:focus {
    outline: none; border-color: var(--premium-gold); background: #fff; box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
}
.address-section { margin: 1.5rem 0; padding: 1.5rem; background: #f9f9f9; border-radius: 15px; border-left: 4px solid var(--premium-gold); }
.address-section h3 { font-size: 1rem; color: var(--brand-blue); text-transform: uppercase; margin-bottom: 1rem; letter-spacing: 1px; }
.btn-primary { 
    background: var(--brand-blue); color: white; border: none; padding: 1rem; border-radius: 10px; width: 100%; 
    font-weight: 700; cursor: pointer; transition: all 0.3s; margin-top: 1rem;
}
.btn-primary:hover { background: #1d3370; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(21, 37, 81, 0.2); }
.pincode-loading { border-color: var(--premium-gold) !important; animation: pulse 1.5s infinite; }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper input {
    padding-right: 2.75rem;
    margin-bottom: 0;
}

.password-toggle-btn {
    position: absolute;
    right: 0.75rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text-light);
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.password-toggle-btn:hover {
    color: var(--brand-blue);
}

.status-badge {
    font-size: 0.8rem;
    margin-top: 0.35rem;
    display: block;
    font-weight: 500;
}

.status-badge.loading { color: #d97706; }
.status-badge.success { color: #16a34a; }
.status-badge.error { color: #dc2626; }

.req-star {
    color: #dc2626;
    margin-left: 2px;
}

@media (max-width: 768px) { .field-grid { grid-template-columns: 1fr; } }
