.forgot__form {
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.05);
    width: 500px;
    height: max-content;
    background-color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    overflow: auto;
    padding: 2em;
    display: table;
    border-radius: 12px;
}
.forgot__form .hidden {
    visibility: hidden;
}
.forgot__line {
    height: 3px;
    width: 100%;
    background: #e5e7eb;
    border-radius: 25px;
}
.forgot__line_step {
    height: 3px;
    width: 33.33%;
    background: var(--color-green);
    border-radius: 25px;
    position: relative;
    bottom: 3px;
    z-index: 1;
    transition: width 0.3s ease;
}

.forgot__content {
    flex: 1 1 0%;
}
.forgot__content h3 {
    font-weight: 700;
    font-size: 24px;
}
.forgot__content span {
    font-size: 14px;
    font-weight: 500;
}

.forgot__from__button button {
    width: 100%;
    padding: 12px 0;
    color: white;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 30px;
    background: var(--color-text-gray);
}

.forgot__step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.input__otp {
    width: 48px;
    height: 48px;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 600;
}

.input__otp:focus-visible {
    box-shadow: 0px 0px 0px 4px #6875f533;
    outline: #3f83f8 solid 2px;
}
.active__step {
    display: block;
}

.forgot__form .back__step__icon {
    padding: 14px 0;
    cursor: pointer;
}
.forgot__support {
    color: #1c64f2;
    font-size: 14px;
    padding: 4px 12px 4px 4px;
    border-radius: 16px;
    background: #E1EFFE;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .forgot__form {
        padding: 32px 24px;
        width: 100%;
        height: 100%;
        border-radius: 0px;
        position: static;
        display: block;
    }
}
