:root {
    --auth-bg: #f6f8fc;
    --auth-card-bg: #ffffff;
    --auth-primary: #0F766E;
    --auth-primary-dark: #0d665f;
    --auth-text: #1f2933;
    --auth-muted: #6b7280;
    --auth-success: #14b8a6;
    --auth-error: #ef4444;
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    margin: 0;
    min-height: 100vh;
    background: radial-gradient(circle at top, rgba(15, 118, 110, 0.08), transparent 45%), var(--auth-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', system-ui, sans-serif;
    color: var(--auth-text);
}

.auth-reset {
    position: relative;
    padding: 2rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-reset__orbit {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at center, rgba(15, 118, 110, 0.08), transparent 55%);
    filter: blur(30px);
}

.auth-reset__card {
    position: relative;
    width: min(420px, 92vw);
    background: var(--auth-card-bg);
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 32px 80px rgba(15, 23, 42, 0.17);
    z-index: 1;
}

.auth-reset__logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.auth-reset__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.9rem;
    font-size: 0.78rem;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.08);
    color: var(--auth-primary);
    font-weight: 600;
}

.auth-reset__header h1 {
    font-size: 1.6rem;
    margin: 0.75rem 0 0.35rem;
    font-weight: 600;
}

.auth-reset__header p {
    margin: 0;
    color: var(--auth-muted);
    font-size: 0.95rem;
    line-height: 1.4;
}

.auth-reset__alert {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.auth-reset__alert--success {
    background: rgba(20, 184, 166, 0.1);
    color: var(--auth-success);
}

.auth-reset__alert--error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--auth-error);
    display: none;
}

.auth-reset__alert[role="alert"]:not(:empty) {
    display: flex;
}

.auth-reset__form {
    margin-top: 2rem;
}

.auth-reset__form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.auth-reset__form-group label {
    font-weight: 500;
}

.auth-reset__input {
    position: relative;
    display: flex;
    align-items: center;
    background: #f7f8fc;
    border-radius: 16px;
    padding: 0.25rem 0.25rem 0.25rem 0.9rem;
    border: 1px solid transparent;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-reset__input:focus-within {
    border-color: rgba(15, 118, 110, 0.4);
    box-shadow: 0 12px 35px rgba(15, 118, 110, 0.12);
    background: #fff;
}

.auth-reset__input i {
    color: var(--auth-muted);
    font-size: 1.1rem;
}

.auth-reset__input input {
    border: none;
    outline: none;
    flex: 1;
    background: transparent;
    font-size: 1rem;
    padding: 0.75rem 0.9rem;
    font-family: inherit;
}

.auth-reset__feedback {
    color: var(--auth-error);
    font-size: 0.85rem;
}

.auth-reset__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.auth-reset__submit {
    border: none;
    border-radius: 18px;
    background: linear-gradient(120deg, var(--auth-primary), var(--auth-primary-dark));
    color: #fff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 20px 35px rgba(15, 118, 110, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.auth-reset__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 40px rgba(13, 102, 95, 0.35);
}

.auth-reset__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    color: var(--auth-muted);
    text-decoration: none;
    font-weight: 500;
}

.auth-reset__link:hover {
    color: var(--auth-primary);
}

@media (max-width: 520px) {
    .auth-reset__card {
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }

    .auth-reset__header h1 {
        font-size: 1.4rem;
    }
}
