/* OTP code */
.verification-code {
    display: flex;
    position: relative;
    z-index: 1;
    height: 50px;
    width: 100%;
}

.verification-code input {
    position: absolute;
    height: 50px;
    left: 49px;
    background: transparent;
    border: none;
    font-size: 25px !important;
    font-weight: 800;
    letter-spacing: 54px;
    text-indent: 1px;
    border: none;
    z-index: 1;
    padding-left: 25px;
    font-family: Courier Prime, monospace;
    color: #00000070 !important;
}

.verification-code input:focus {
    background: transparent !important;
}

.verification-code input:focus-visible{
    border: none;
    outline: none;
}

.boxes {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    z-index: -1;
    gap: 8px;
}

.verification-code:after {
    position: absolute;
    content: "";
    right: -37px;
    width: 35px;
    height: 50px;
    z-index: 2;
}

.verification-code span {


    height: 50px;
    width: calc((100% / 6) - 3px);
    background: #FFFF;
    border: solid 1px #00000050;
    text-align: center;
    line-height: 50px;
    color: #00000080;
    border-radius: 8px ;
}

@media (max-width: 1399px) {
    .verification-code input {
        letter-spacing: 74px;
        left: 82px;
        width: calc(100% + 80px);
    }
}
@media (max-width: 991px) {
    .verification-code input {
        letter-spacing: 67px;
    }
}

@media (max-width: 575px) {
    .verification-code-wrapper {
      width: 400px !important;
      padding: 32px !important;
    }

    .verification-code input {

        padding-left: 18px;
        letter-spacing: 48px;
        left: 48px;
    }

    .verification-text {
        font-size: 1rem;
    }

    .verification-code::after {
        right: -32px;
        width: 30px;
    }
}

@media (max-width: 450px) {
    .verification-code-wrapper {
        width: 380px !important;
        padding: 32px !important;
    }

    .verification-code input {
        width: calc(100% + 45px);
        padding-left: 15px;
        letter-spacing: 40px;
    }
}

@media (max-width: 400px) {
    .verification-code {
        height: 40px;
    }

    .verification-code-wrapper {
        width: 340px !important;
        padding: 32px !important;
    }

    .verification-code input {
        width: calc(100% + 40px);
        padding-left: 15px;
        letter-spacing: 34px;
        height: 40px;
    }

    .verification-code span {
        height: 40px;
        line-height: 40px;
    }

    .verification-code::after {
        height: 40px;
    }

    .verification-code input {
        font-size: 20px !important;
    }
}


@media (max-width: 375px) {
    .verification-code-wrapper {
        width: 300px !important;
        padding: 32px !important;
    }

    .verification-code input {
        padding-left: 13px;
        letter-spacing: 34px;
        height: 40px;
        left: 32px;
    }
}

/* OTP code  end */



/* recovary page */
.recovary-section {
    height: 100vh;
    background-color: hsl(var(--main));
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    width: 100%;

    .base-card {
        background-color: hsl(var(--white));
        padding: 53px 20px;
        border-radius: 12px;
        width: 100%;

        .content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 10px;
            width: 100%;
            margin-bottom: 40px;

            .card-title {
                color: hsl(var(--black));
                font-size: 30px;
                font-weight: 700;
                line-height: 1.2;
            }

            .subtitle {
                text-align: center;
                color: hsl(var(--black)/0.6);
                font-size: 18px;
                line-height: 28px;
            }
        }

        .option-text {
            a {
                color: hsl(var(--main));
            }
        }
    }

    .status-card {
        display: flex;
        align-items: center;
        gap: 12px;

        padding-bottom: 18px;

        .number {
            width: 33px;
            height: 33px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            display: flex;
            justify-content: center;
            align-items: center;

            .text {
                color: hsl(var(--white));
                margin-bottom: 0px;
            }
        }

        .content {
            .text {
                color: hsl(var(--white));
                margin-bottom: 0px;
                font-weight: 600;
                font-size: 18px;
            }
        }
    }

    .status-card-btmborder {
        position: relative;

        &::after {
            position: absolute;
            content: "";
            width: 70%;
            height: 3px;
            background: hsl(var(--white));
            left: 0px;
            bottom: 0px;
        }
    }

}


