.reset-page {
    width: min(100% - 32px, 560px);
    min-height: calc(100vh - 70px);
    margin: 0 auto;
    padding: 56px 0;
    display: grid;
    place-items: center;
}

.reset-card {
    width: 100%;
    padding: clamp(26px, 6vw, 48px);
    border: 1px solid rgba(255, 106, 0, 0.18);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(17, 24, 39, 0.14);
}

.reset-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #ff6a00;
    background: #fff3e8;
    font-size: 28px;
}

.reset-card h1 {
    margin: 20px 0 8px;
    font-size: clamp(28px, 7vw, 38px);
    line-height: 1.15;
}

.reset-card>p {
    margin: 0;
    color: #6b7280;
}

.reset-alert {
    margin-top: 20px;
    padding: 13px 15px;
    border-radius: 14px;
    font-size: 14px;
}

.reset-alert p {
    margin: 0;
}

.reset-alert.error {
    color: #b42318;
    background: #fff1f1;
    border: 1px solid #fecaca;
}

.reset-alert.success {
    color: #166534;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.reset-form {
    margin-top: 26px;
    display: grid;
    gap: 10px;
}

.reset-form label {
    margin-top: 4px;
    font-size: 14px;
    font-weight: 800;
}

.reset-form input {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 1px solid rgba(17, 24, 39, 0.16);
    border-radius: 14px;
    outline: 0;
    font: inherit;
}

.reset-form input:focus {
    border-color: #ff6a00;
    box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.12);
}

.reset-form .otp-input {
    text-align: center;
    letter-spacing: 0.45em;
    font-size: 24px;
    font-weight: 800;
}

.reset-form button,
.reset-login-link {
    width: 100%;
    min-height: 50px;
    margin-top: 8px;
    border: 0;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(90deg, #ff3d3d, #ff6a00);
    font: inherit;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
}

.reset-secondary-form {
    margin-top: 10px;
    text-align: center;
}

.reset-secondary-form button {
    border: 0;
    color: #ff6a00;
    background: transparent;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.reset-back-link {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}