.modal-content {
    background: rgba(26, 34, 54, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(26, 34, 54, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn-light:hover{
    background-color: white;
    box-shadow: 0 0 20px rgb(255, 255, 255, 0.5)
}

.btn-card {
    min-height: 300px;
    width: 50%;
    min-width: 290px;
}

.bt {
    width: 50%;
    min-width: 150px;
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    transition: 0.1s ease-in-out;
    margin: 10px;
}

.btn-login {
    background-color: white;
    color: rgb(0, 0, 0);
}

.btn-signup {
    background-color: white;
    color: rgb(0, 0, 0);
}

.bt:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {

    .carousel,
    .carousel-inner,
    .carousel-item img {
        max-height: 400px;
        max-width: 400px;
    }
}

@media (max-width: 992px) {
    .btn-card {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* to hide number selector arrows*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}