/* ============================================================================
   HireTheVeterans.com — Registration Page Styles
   ============================================================================ */

/* Form Row (side-by-side fields) */
.form-row {
    display: flex;
    gap: 16px;
}

.form-half {
    flex: 1;
}

/* Required asterisk */
.required {
    color: var(--red);
    font-weight: 400;
}

/* Step back link */
.step-back {
    text-align: center;
    margin-top: 16px;
}

.step-back a {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}

.step-back a:hover {
    color: var(--navy);
}

/* Declaration box */
.declaration-box {
    background: var(--star-pale);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 20px;
}

.declaration-box .form-group {
    margin-bottom: 0;
}

.declaration-box .check-text {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-body);
}

/* Registration summary (step 4) */
.reg-summary {
    background: var(--surface-alt);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-bottom: 24px;
}

.reg-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.reg-summary-row + .reg-summary-row {
    border-top: 1px solid var(--border-light);
}

.reg-summary-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reg-summary-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.verified-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--success);
    background: var(--success-pale);
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 6px;
}

/* Password rules */
.password-rules {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.rule {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 3px;
    background: var(--surface-alt);
    color: var(--text-muted);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.rule-pass {
    background: var(--success-pale);
    color: var(--success);
    border-color: var(--success);
}

.rule-fail {
    background: var(--error-pale);
    color: var(--error);
    border-color: var(--error);
}

/* Verification code input */
.verify-code-input {
    text-align: center;
    font-size: 28px !important;
    font-weight: 700;
    letter-spacing: 12px;
    padding: 14px !important;
    font-family: 'Barlow Condensed', monospace;
}

.verify-sent-notice {
    background: var(--info-pale);
    border: 1px solid rgba(52, 152, 219, 0.2);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    margin-bottom: 20px;
    text-align: center;
}

.verify-sent-notice p {
    font-size: 14px;
    color: #21618C;
    margin: 0;
}

/* Resend section */
.resend-section {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.resend-section p {
    margin-bottom: 6px;
}

.resend-divider {
    margin: 0 8px;
    color: var(--text-light);
}

.btn-link {
    background: none;
    border: none;
    color: var(--blue);
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}

.btn-link:hover {
    color: var(--blue-hover);
}

/* Dev mode note */
.dev-note {
    font-size: 12px;
    color: var(--warning);
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .password-rules {
        flex-direction: column;
    }

    .reg-summary-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .verify-code-input {
        font-size: 24px !important;
        letter-spacing: 8px;
    }
}
