/* TransferHub 2027 · Password reset */

.th27-reset-page {
    min-height: calc(100vh - 78px);
    display: grid;
    place-items: center;
    padding: 50px 20px 80px;
}

.th27-reset-wrap {
    width: min(100%, 560px);
}

.th27-reset-card {
    padding: 34px;
    border: 1px solid var(--th27-border);
    border-radius: 22px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(24, 140, 255, .15),
            transparent 36%
        ),
        linear-gradient(
            145deg,
            rgba(9, 33, 53, .97),
            rgba(4, 20, 34, .98)
        );
    box-shadow: 0 28px 80px rgba(0, 0, 0, .30);
}

.th27-reset-card h1 {
    margin: 8px 0 0;
    font-size: clamp(30px, 5vw, 42px);
    line-height: 1.06;
    letter-spacing: -1.5px;
}

.th27-reset-lead {
    margin: 14px 0 24px;
    color: var(--th27-soft);
    font-size: 13px;
    line-height: 1.7;
}

.th27-reset-field {
    display: grid;
    gap: 7px;
    margin-top: 15px;
}

.th27-reset-field span {
    color: #e1edf6;
    font-size: 11px;
    font-weight: 800;
}

.th27-reset-field input {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid rgba(94, 160, 210, .22);
    border-radius: 11px;
    outline: 0;
    background: rgba(3, 16, 28, .82);
    color: #fff;
    font: inherit;
    font-size: 13px;
}

.th27-reset-field input:focus {
    border-color: rgba(38, 156, 255, .72);
    box-shadow: 0 0 0 3px rgba(23, 135, 255, .10);
}

.th27-reset-button {
    width: 100%;
    margin-top: 22px;
}

button.th27-reset-button {
    border: 0;
    cursor: pointer;
}

.th27-reset-success,
.th27-reset-error {
    margin-top: 21px;
    padding: 15px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1.55;
}

.th27-reset-success {
    border: 1px solid rgba(22, 224, 140, .30);
    background: rgba(22, 224, 140, .08);
    color: #8df4c2;
}

.th27-reset-success strong {
    display: block;
    margin-bottom: 4px;
    color: #b2f9d4;
}

.th27-reset-success p {
    margin: 0;
}

.th27-reset-error {
    border: 1px solid rgba(255, 82, 106, .30);
    background: rgba(255, 82, 106, .08);
    color: #ff9dab;
}

.th27-reset-info {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 11px;
    align-items: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--th27-border);
}

.th27-reset-info span {
    padding: 6px 8px;
    border-radius: 8px;
    background: rgba(23, 135, 255, .11);
    color: #63c4ff;
    font-size: 10px;
    font-weight: 900;
}

.th27-reset-info p {
    margin: 0;
    color: var(--th27-muted);
    font-size: 10px;
    line-height: 1.5;
}

.th27-reset-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
}

@media (max-width: 600px) {
    .th27-reset-page {
        display: block;
        padding: 28px 12px 60px;
    }

    .th27-reset-card {
        padding: 22px;
    }
}
