@media (max-width: 767.9px) {
    body {
        background-color: #fff;
        overflow: scroll !important;
    }
    .container-custom {
        height: 100vh;
    }
    .verification-code {
        transform: scale(0.8, 0.8);
        background-color: #fff;
        position: relative;
        top: -200px;
    }
    img {
        transform: scale(0.7, 0.7);
    }
    .verification-code h2 {
        color: black;
        font-size: 24px;
        text-align: center;
        font-weight: 600;
    }
    .verification-code p {
        font-size: 18px;
        text-align: center;
    }
    .verification-code-container .input {
        background-color: #fff;
        color: black; /* Matn rangini qora qilib qo'ydik */
    }
    .btn-custom {
        background-color: gainsboro;
        font-size: 22px;
        font-weight: 500;
        padding: auto;
        transform: scale(0.97, 1.1);
    }
}
@media (min-width: 768px) {
    body {
        background-color: rgb(23, 33, 43);
    }
    .verification-code {
        background-color: rgb(23, 33, 43);
    }
    .verification-code h2 {
        color: white;
        text-align: center;
        font-size: 24px;
    }
    .verification-code p {
        font-size: 13px;
        text-align: center;
    }
    .verification-code-container .input {
        background-color: rgb(48, 69, 90);
        color: #fff; /* Matn rangini oq qilib qo'ydik */
    }
}
body {
    height: 100vh;
}
.clearfix {
    clear: both;
}
.container-custom {
    margin: auto;
}
.verification-code {
    border-radius: 7px;
}
.verification-code p {
    color: #8e8e93;
}
.verification-code-container {
    display: flex;
    gap: 10px;
    margin: 30px 0;
}
.verification-code-container .input {
    width: 45px;
    height: 53px;
    text-align: center;
    font-size: 18px;
    border: 2px solid rgb(23, 33, 43);
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
}
.verification-code-container .input:focus {
    border-color: #007bff;
}
