.password-reset-page {
    min-height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;

    background:
        radial-gradient(circle at 15% 15%,
            rgba(113, 184, 49, 0.10),
            transparent 30%),
        radial-gradient(circle at 90% 90%,
            rgba(13, 49, 51, 0.08),
            transparent 35%),
        #f2f5f3;
}

.password-reset-shell {
    width: 100%;
    max-width: 540px;
}

.password-reset-card {
    width: 100%;
    padding: 42px;

    background: #ffffff;

    border: 1px solid rgba(13, 49, 51, 0.10);
    border-radius: 24px;

    box-shadow:
        0 24px 70px rgba(13, 49, 51, 0.12);
}

.password-reset-logo {
    display: flex;
    justify-content: center;

    margin-bottom: 30px;
}

.password-reset-logo img {
    display: block;

    width: 126px;
    height: auto;

    padding: 10px;

    background: #ffffff;

    border: 1px solid #e4e9e6;
    border-radius: 16px;
}

.password-reset-heading {
    margin-bottom: 30px;

    text-align: center;
}

.password-reset-heading .eyebrow {
    margin: 0 0 9px;

    color: #4f982e;

    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;

    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.password-reset-heading h1 {
    margin: 0;

    color: #16221f;

    font-size: 32px;
    font-weight: 800;
    line-height: 1.15;

    letter-spacing: -0.035em;
}

.password-reset-heading p {
    max-width: 430px;

    margin: 13px auto 0;

    color: #68756f;

    font-size: 14px;
    line-height: 1.65;
}

.password-reset-form {
    display: grid;

    gap: 20px;
}

.password-reset-field {
    display: grid;

    gap: 8px;
}

.password-reset-field label {
    color: #1b2925;

    font-size: 13px;
    font-weight: 700;
}

.password-reset-field input {
    width: 100%;
    min-height: 54px;

    padding: 0 16px;

    box-sizing: border-box;

    border: 1px solid #d5ddda;
    border-radius: 12px;

    outline: none;

    background: #ffffff;

    color: #18231f;

    font-family: inherit;
    font-size: 15px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.password-reset-field input::placeholder {
    color: #9ca6a2;
}

.password-reset-field input:hover {
    border-color: #bbc7c1;
}

.password-reset-field input:focus {
    border-color: #63a938;

    box-shadow:
        0 0 0 4px rgba(99, 169, 56, 0.12);
}

.password-reset-hint {
    color: #82908a;

    font-size: 12px;
    line-height: 1.5;
}

.password-reset-submit {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 54px;

    padding: 0 20px;

    border: 0;
    border-radius: 12px;

    background:
        linear-gradient(135deg,
            #367f28,
            #66b52e);

    color: #ffffff;

    font-family: inherit;
    font-size: 14px;
    font-weight: 800;

    text-decoration: none;

    cursor: pointer;

    box-shadow:
        0 10px 24px rgba(77, 153, 42, 0.16);

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        opacity 0.18s ease;
}

.password-reset-submit:hover {
    transform: translateY(-1px);

    box-shadow:
        0 14px 30px rgba(77, 153, 42, 0.23);
}

.password-reset-submit:active {
    transform: translateY(0);
}

.password-reset-submit-link {
    box-sizing: border-box;
}

.password-reset-alert {
    margin: 0 0 22px;

    padding: 14px 16px;

    border-radius: 12px;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.55;
}

.password-reset-alert.error {
    border: 1px solid #f4c7c7;

    background: #fff3f3;

    color: #9d2929;
}

.password-reset-alert.success {
    border: 1px solid #c8e5cb;

    background: #f0faf1;

    color: #286b34;
}

.password-reset-back {
    margin-top: 23px;

    text-align: center;
}

.password-reset-back a {
    color: #477c31;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: opacity 0.2s ease;
}

.password-reset-back a:hover {
    opacity: 0.72;

    text-decoration: underline;
}

.password-reset-credit {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 20px;

    color: #7e8b86;

    font-size: 11px;
    line-height: 1.5;

    text-align: center;
}

.password-reset-credit a {
    color: #53645e;

    font-weight: 700;

    text-decoration: none;
}

.password-reset-credit a:hover {
    text-decoration: underline;
}

.password-reset-credit-dot {
    opacity: 0.55;
}

@media (max-width: 640px) {

    .password-reset-page {
        align-items: flex-start;

        padding: 24px 14px;
    }

    .password-reset-shell {
        max-width: 100%;
    }

    .password-reset-card {
        padding: 30px 20px;

        border-radius: 18px;
    }

    .password-reset-logo {
        margin-bottom: 24px;
    }

    .password-reset-logo img {
        width: 110px;
    }

    .password-reset-heading {
        margin-bottom: 25px;
    }

    .password-reset-heading h1 {
        font-size: 27px;
    }

    .password-reset-heading p {
        font-size: 13px;
    }

    .password-reset-credit {
        flex-direction: column;

        gap: 3px;
    }

    .password-reset-credit-dot {
        display: none;
    }
}