:root {
    --reset-bg: #f7f7f8;
    --reset-card-bg: #ffffff;
    --reset-border: #eceaea;
    --reset-eyebrow: #909497;
}

body {
    background-color: var(--reset-bg);
}

.password-reset-page {
    padding: 64px 0 96px;
}

.password-card {
    background: var(--reset-card-bg);
    border-radius: 18px;
    padding: 40px;
    border: 1px solid var(--reset-border);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.07);
}

.password-card .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 12px;
    font-weight: 600;
    color: var(--reset-eyebrow);
    margin-bottom: 12px;
}

.password-card h1 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 12px;
}

.password-card .intro {
    color: #4a4f55;
    margin-bottom: 24px;
}

.password-card .form-label {
    font-weight: 600;
    color: #1b1f24;
}

.password-card .form-control {
    padding: 12px 16px;
    border-radius: 10px;
}

.password-card .btn {
    padding: 12px 16px;
    font-weight: 600;
    border-radius: 12px;
    margin-top: 4px;
    color: #ffffff; 
}

.password-card .alt-links {
    margin-top: 32px;
    font-size: 14px;
    color: #5b6166;
}

.password-card .alt-links a {
    font-weight: 600;
    color: #d7263d;
    text-decoration: none;
}

.password-card .alt-links a:hover {
    text-decoration: underline;
}

.password-field {
    position: relative;
}

.password-field .toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    width: 24px;
    height: 24px;
    padding: 0;
    cursor: pointer;
    opacity: 0.6;
}

.password-field .toggle-password::before {
    content: "\1F441";
    font-size: 18px;
}

.password-field .toggle-password.is-visible::before {
    content: "\1F441\FE0E";
    color: #d7263d;
}

@media (max-width: 767px) {
    .password-reset-page {
        padding: 32px 0 64px;
    }

    .password-card {
        padding: 28px;
    }
}
