.modal-open{
    padding-right: 0 !important;
}

.modal-title {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    font-family: "Roboto", serif;
    text-align: center;
}

.modal-body {
    padding: 20px;
}

.close-btn {
    display: flex;
    justify-content: end;
    align-items: end;
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active,
button {
    box-shadow: none;
    outline: none;
    border: none !important;
}

.login-modal-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
.custom-input-group {
    position: relative;
    border-radius: 10px;
    background-color: rgba(196, 196, 196, 0.2);
    border: 1px solid #ddd;
    overflow: hidden;
}

.custom-input-group:hover {
    border-color: #bbb;
}

.custom-input {
    border: none !important;
    background-color: transparent !important;
    padding: 12px !important;
    font-size: 14px !important;
    outline: none !important;
    height: 46px;
    width: 100%;
}

.custom-input:focus {
    background-color: #fff !important;
    border: none;
    box-shadow: none !important;
}

.input-icon {
    border: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px !important;
    background-color: transparent !important;
}

.input-icon img {
    width: 20px;
    height: 20px;
    filter: grayscale(50%);
    transition: filter 0.3s ease;
}

.input-icon:hover img {
    filter: grayscale(0%);
}

/* Wrapper for the modal */
.modal-wrapper .modal-content {
    border-radius: 25px;
    position: relative;
    z-index: 2;
    padding: 0;
    background-color: #fff;
}

.modal-wrapper .modal-content::after {
    content: "";
    background: url("../images/auth/loginbg.png") no-repeat bottom left;
    background-size: contain;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    z-index: 1;
    border-bottom-left-radius: 20px;
}

.modal-body {
    z-index: 3;
    position: relative;
    padding: 0px 30px;
}

.close-btn button{
    background: transparent !important;
}

.close-btn .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    z-index: 3;
    cursor: pointer;
}

.login-modal-icons img {
    transition: transform 0.2s ease-in-out;
}

.login-modal-icons img:hover {
    transform: scale(1.1);
}

.modal-wrapper .modal-body {
    padding: 15px 50px;
}

#checkoutQuestionnaireModal .modal-body {
    padding: 10px !important;
}

.login-button {
    background-color: #d4c4c2 !important;
    padding: 10px 20px !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #000 !important;
    font-family: "DM Sans", serif !important;
}

.forgot-password {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
    font-family: "Roboto", serif;
    text-align: center;
    text-decoration: none;
}
.register-link {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    font-family: "Roboto", serif;
    text-align: center;
    text-decoration: none;
}

.special-label{
    display: none;
}
.react-tel-input {
    position: relative;
}
.phone-icon{
    position: absolute;
    right: 0px;
    bottom: 0px;
    height: 46px;
}
.react-tel-input .form-control{
    padding-left: 10px !important;
    background-color: rgba(196, 196, 196, 0.01);
    border-color: rgba(196, 196, 196, 0.01) !important ;
}
.input-group-text{
    border-radius: 0px !important;
}

.email-color{
    color: #C8A7A3;
}

.right-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;

}
.right-img{
    position: relative;
}

.right-img .close-btn {
    position: absolute;
    top: 0px;
    right: 0px;
}

.otp-input{
    width: 45px !important;
    height: 45px !important;
    font-size: 20px !important;
    border-radius: 5px !important;
    border: 1px solid rgb(200, 167, 163) !important;
    text-align: center !important;
}


@media screen and (max-width: 991px) {

    .modal-wrapper .row {
        flex-direction: column-reverse;

    }

    .right-img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-top-right-radius: 25px;
        border-top-left-radius: 25px;
        border-bottom-right-radius: 0px;

    }
}



