/**
 * GP Auth Forms - Forgot Password, Reset Password, Forgot Username
 * Version: 1.0.0
 */

/* ===========================
   FORM HEADER
   =========================== */
.gp-form-header {
    text-align: center;
    margin-bottom: 24px;
}

.gp-form-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--gp-text-primary, #2D3748);
    margin: 0 0 8px 0;
    padding: 0;
    line-height: 1.3;
}

.gp-form-header p {
    color: var(--gp-text-secondary, #6B7280);
    font-size: 14px;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

/* ===========================
   FORM MESSAGE (Success/Error)
   =========================== */
.gp-form-message {
    padding: 14px 16px;
    border-radius: var(--gp-radius-md, 12px);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 24px;
    text-align: center;
}

.gp-msg-success {
    background: rgba(72, 187, 120, 0.1);
    border: 1px solid rgba(72, 187, 120, 0.3);
    color: #2F855A;
}

.gp-msg-error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #DC2626;
}

/* ===========================
   USERNAME RESULT CARD
   =========================== */
.gp-username-result-card {
    background: rgba(72, 187, 120, 0.06);
    border: 1px solid rgba(72, 187, 120, 0.25);
    border-radius: var(--gp-radius-md, 12px);
    padding: 24px;
    text-align: center;
    margin-bottom: 24px;
}

.gp-result-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.gp-result-label {
    font-size: 14px;
    color: var(--gp-text-secondary, #6B7280);
    margin: 0 0 16px 0;
    font-weight: 500;
}

.gp-result-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gp-result-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.gp-result-key {
    font-size: 13px;
    color: var(--gp-text-secondary, #6B7280);
    font-weight: 500;
}

.gp-result-value {
    font-size: 15px;
    color: var(--gp-text-primary, #2D3748);
    font-weight: 600;
}

/* ===========================
   FORM FIELDS WRAPPER
   =========================== */
.gp-form-fields {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}