.panel-forgot-step {
    display: grid;
    gap: 14px;
    align-items: start;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.panel-forgot-step .panel-btn {
    width: 100%;
    justify-self: center;
}

.panel-forgot-step.is-hidden {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

.panel-forgot-sent {
    margin: 18px 0 14px 0;
    font-family: neue-haas-grot-text-roman, sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.88);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.panel-forgot-sent.is-visible {
    opacity: 1;
}

@media (max-width: 767px) {
    .panel-forgot-sent {
        margin-top: 0;
        width: 65%;
    }
    .panel-forgot-sent.is-visible {
        margin-bottom: 20px;
    }
}

.panel-forgot-step--code {
    display: grid;
    gap: 14px;
    align-items: start;
    margin-top: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.panel-forgot-step--code .panel-label {
    display: block;
    margin-bottom: 0;
    text-align: center;
}

.panel-forgot-step--code .panel-btn {
    width: 100%;
    justify-self: center;
}

.panel-forgot-step--code.is-visible {
    opacity: 1;
}

.panel-code-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 8px 0 0 0;
}

.panel-code-cell {
    width: 44px;
    height: 46px;
    text-align: center;
    font-family: pp-neue-machina-plain-regular, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    outline: none;
}

.panel-code-cell:focus {
    border-color: rgba(255, 255, 255, 0.5);
}

.panel-code-dash {
    display: none;
}

.panel-forgot-wrong {
    margin-top: 14px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(220, 80, 80, 0.4);
    background: rgba(220, 80, 80, 0.12);
    font-family: neue-haas-grot-text-roman, sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.92);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.panel-forgot-wrong.is-visible {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
}
