swiper-container {
    width: 100%;
    height: 100%;
}

swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
}

swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar-brand {
    font-size: 1.25rem;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

#intro {
    background-image: url("../img/bg.png");
    height: 100vh;
}

@media (min-width: 992px) {
    #intro {
        margin-top: -58.59px;
    }
}

.form-container {
    background-color: #2d2d2d;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
}

.phone-label {
    font-size: 18px;
    margin-bottom: 5px;
}

.phone-number {
    font-size: 16px;
    margin-bottom: 20px;
}

.submit-button {
    background-color: #00ff00;
    color: #000000;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

.submit-button:hover {
    background-color: #00cc00;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(0, 123, 255, .25)
}

.btn-secondary:focus {
    box-shadow: 0 0 0 0rem rgba(108, 117, 125, .5)
}

.close:focus {
    box-shadow: 0 0 0 0rem rgba(108, 117, 125, .5)
}

.mt-200 {
    margin-top: 200px
}

.btn-image {
    padding: 0;
    border: none;
    background: none;
    min-width: auto;
    display: inline-block;
    overflow: hidden;
}

.btn-image img {
    display: block; /* Убираем нижний отступ под изображением */
    width: 100%; /* Растягиваем на всю кнопку, но сохраняем пропорции */
    height: auto; /* Сохраняем пропорции */
    /* Если нужно фиксированный размер: width: 100px; height: 50px; object-fit: cover; */
}

/* Ховер-эффект */
.btn-image:hover {
    opacity: 0.9; /* Легкое затемнение */
}

.bank-btns .btn{
    margin-bottom: 35px;
}

.code-digit div input {
    border: 1px solid #000 !important;
    border-radius: 5px;
}

.otp-input {
    font-size: 2rem;
    height: 60px;
    width: 60px;
    border-radius: 8px;
}
@media (max-width: 576px) {
    .otp-input {
        font-size: 1.5rem;
        height: 50px;
        width: 50px;
    }
}