/* ─── RESET PASSWORD: SPECIFIC STYLES ───────────────────────────────────────
   Extends login.css — hanya berisi class yang tidak ada di login.css
   ─────────────────────────────────────────────────────────────────────────── */

/* Security Tips (hero panel) */
.security-tips {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.tip-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tip-icon i {
    color: var(--amber);
    font-size: 15px;
}
.tip-title {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3px;
}
.tip-desc {
    font-size: 11.5px;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
}

/* ─── STATE VIEWS ─────────────────────────────────────── */
.rp-sent-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px 0;
}
.rp-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    animation: rp-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes rp-pop {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}
.rp-icon-sent {
    background: linear-gradient(135deg, var(--orange), var(--amber));
    box-shadow: 0 8px 24px rgba(232,101,10,0.35);
}
.rp-icon-error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 8px 24px rgba(239,68,68,0.35);
}
.rp-icon-wrap i {
    color: white;
    font-size: 32px;
}
.rp-state-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}
.rp-state-desc {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}
.rp-email-highlight {
    color: var(--orange);
    font-weight: 700;
}
.rp-info-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 12px;
    padding: 14px 16px;
    text-align: left;
    width: 100%;
}
.rp-info-box i {
    color: var(--orange);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}
.rp-info-box p {
    font-size: 12px;
    color: #92400e;
    line-height: 1.6;
}
.rp-info-box p + p { margin-top: 4px; }

/* ─── PASSWORD STRENGTH ───────────────────────────────── */
.pw-strength-wrap {
    height: 4px;
    background: #f1f5f9;
    border-radius: 99px;
    margin-top: 8px;
    overflow: hidden;
}
.pw-strength-bar {
    height: 100%;
    width: 0;
    border-radius: 99px;
    transition: width 0.4s ease, background 0.3s ease;
}
.pw-strength-label {
    font-size: 11px;
    font-weight: 600;
    margin-top: 4px;
    min-height: 16px;
    transition: color 0.3s;
}
