.auth-resend-form {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.resend-button {
    align-items: center;
    background: linear-gradient(135deg, #fff 0%, #f6f3ff 100%);
    border: 1px solid #d9d2fb;
    border-radius: 13px;
    box-shadow: 0 8px 22px rgba(75, 54, 180, .09);
    color: #5542cf;
    cursor: pointer;
    display: inline-flex;
    font: 800 12px Vazirmatn, Tahoma, Arial, sans-serif;
    gap: 9px;
    justify-content: center;
    min-height: 46px;
    padding: 0 17px;
    transition: border-color .2s ease, box-shadow .2s ease, color .2s ease, transform .2s ease;
}

.resend-button:hover:not(:disabled) {
    border-color: #9c8cf0;
    box-shadow: 0 12px 28px rgba(75, 54, 180, .16);
    color: #3f2daf;
    transform: translateY(-2px);
}

.resend-button:focus-visible {
    outline: 3px solid rgba(96, 72, 232, .18);
    outline-offset: 3px;
}

.resend-button:disabled {
    background: #f4f5f9;
    border-color: #e2e4ec;
    box-shadow: none;
    color: #969bad;
    cursor: not-allowed;
}

.resend-button-icon {
    align-items: center;
    background: rgba(96, 72, 232, .1);
    border-radius: 9px;
    display: inline-flex;
    height: 29px;
    justify-content: center;
    width: 29px;
}

.resend-button-icon svg,
.resend-lock-icon svg {
    fill: none;
    height: 18px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
    width: 18px;
}

.resend-button.is-waiting .resend-button-icon svg {
    animation: resend-spin 1.8s linear infinite;
}

.resend-countdown {
    direction: ltr;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 11px;
    min-width: 32px;
}

.auth-resend-form > p {
    color: #9297aa;
    font-size: 10px;
    line-height: 1.7;
    margin: 0;
    text-align: center;
}

.resend-lock-notice {
    align-items: flex-start;
    background: linear-gradient(135deg, #fff9e9, #fffdf6);
    border: 1px solid #eedda9;
    border-radius: 15px;
    color: #6f581c;
    display: flex;
    gap: 12px;
    margin: 0 0 20px;
    padding: 14px 15px;
}

.resend-lock-icon {
    align-items: center;
    background: #f6e7b8;
    border-radius: 11px;
    color: #8d6a12;
    display: inline-flex;
    flex: 0 0 38px;
    height: 38px;
    justify-content: center;
}

.resend-lock-notice strong {
    display: block;
    font-size: 12px;
    margin: 1px 0 3px;
}

.resend-lock-notice p {
    font-size: 10px;
    line-height: 1.7;
    margin: 0;
}

.resend-lock-notice a {
    color: #5542cf;
    direction: ltr;
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    margin-top: 4px;
}

@keyframes resend-spin {
    to { transform: rotate(-360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .resend-button,
    .resend-button-icon svg { animation: none; transition: none; }
}

@media (max-width: 480px) {
    .resend-button { width: 100%; }
}
.auth-inline-link{display:inline-flex;align-self:flex-end;margin-top:-6px;color:#5b2be0;font-size:13px;font-weight:800;text-decoration:none}.auth-inline-link:hover{text-decoration:underline}
