/* Center the wrapper in the body */

/* Style for the wrapper */
.wrapper * {
    text-align: center;
    display: flex;
    gap: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, Helvetica, source, sans-serif;
}



/* Style for the input boxes */
.wrapper input {
    width: 80px;
    height: 80px;
    text-align: center;
    font-size: 20px;
    line-height: 1.7;
    border-radius: 10%;
    border: 1px solid lightgray;
    outline: none;
    display: flex;
    align-items: center;

}

.wrapper input:focus {
    border: 1px solid purple;

}

/* Style for the hyphen separator */
.wrapper input::after {
    content: "━";
}

/* Style for the resend code message */
.wrapper p {
    margin-top: 20px;
    font-size: 14px;
    color: #999;

}

/* Style for the verification message */
.verification-message {
    margin-top: 10px;
    font-size: 16px;
    color: gray;
}

/* Animation for fading in and out */
@keyframes fade-in-out {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@media screen and (max-width: 767px) {
    .wrapper {
        width: 99%;
    }

    .wrapper input {
        height: 40px;
        width: 40px;

    }

    .wrapper input::after {
        content: "+";
    }
}





.content {
    position: absolute;
    top: 3%;
    left: 62%;
    z-index: 100;
    transform: translate(-50%, -50%);
    height: 60px;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    text-align: center;
    line-height: 40px;
    padding: 10px;
    color: #ecf0f1;
}



.content__container {
    font-weight: 600;
    overflow: hidden;
    height: 40px;

    padding: 5px 40px;
}





.content__container__text {
    display: inline;
    float: left;
    margin: 0;
    background-color: #999;
}

.content__container__list {
    margin-top: 0;
    padding-left: 160px;
    text-align: left;
    list-style: none;
    -webkit-animation-name: change;
    -webkit-animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    animation-name: change;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}

.content__container__list__item {
    line-height: 40px;
    margin: 0;
}

@-webkit-keyframes opacity {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

@-webkit-keyframes change {

    0%,
    12.66%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    16.66%,
    29.32% {
        transform: translate3d(0, -25%, 0);
    }

    33.32%,
    45.98% {
        transform: translate3d(0, -50%, 0);
    }

    49.98%,
    62.64% {
        transform: translate3d(0, -75%, 0);
    }

    66.64%,
    79.3% {
        transform: translate3d(0, -50%, 0);
    }

    83.3%,
    95.96% {
        transform: translate3d(0, -25%, 0);
    }
}

@keyframes opacity {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

@keyframes change {

    0%,
    12.66%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    16.66%,
    29.32% {
        transform: translate3d(0, -25%, 0);
    }

    33.32%,
    45.98% {
        transform: translate3d(0, -50%, 0);
    }

    49.98%,
    62.64% {
        transform: translate3d(0, -75%, 0);
    }

    66.64%,
    79.3% {
        transform: translate3d(0, -50%, 0);
    }

    83.3%,
    95.96% {
        transform: translate3d(0, -25%, 0);
    }
}