*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
a{
    text-decoration: none;
}

/* General Layout */
.login-wrapper {
    min-height: 100vh;
    overflow: hidden;
    max-width: 1300px;
    padding: 30px 0;
    /* position: relative; */
}

.shape-bar-wapper::after{
    position: fixed;
    content: "";
    top: 0;
    right: -10px;
    background-image: url("../../images/shape-bg-login.svg");
    width: 65%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.shape-bar{
    margin-top: 150px;
    margin-left: 100px;
}

/* Right Section */
.right-section {
    border-radius: 0 0 0 250px;
    position: relative;
}

.right-section .illustration {
    width: 90%;
    max-width: 550px;
}

/* Buttons */
.btn-email {
    background: #A30B17;
    color: white;
    padding: 10px 25px;
    font-weight: 600;
}

.btn-whatsapp {
    background: #CDA157;
    color: white;
    padding: 10px 25px;
    font-weight: 600;
}

.fill-btn {
    background: #A30B17;
    color: white;
    padding: 12px;
    font-size: 1.05rem;
    font-weight: bold;
    border-radius: 6px;
    border: 1px solid transparent;
}
.fill-btn:hover{
    border-color: #A30B17;
    color: #A30B17;
}

.text-link {
    color: #A30B17;
    font-weight: 600;
}

/* Input Groups */
.input-group-text {
    background: #fff;
    border: 0;
}

.form-control {
    border-left: 0;
}


/* Tabs Style */

.login-tabs{
    background-color: rgba(187, 112, 10, 0.75);
    padding: 5px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.login-tabs .nav-link {
    height: 100%;
    color: #fff;
    font-weight: 500;
    padding: 10px 8px;
    border-radius: 5px;
    border: none !important;
    margin-right: 10px;
    width: 100%;
    font-size: 14px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

/* Active Email Tab */
.login-tabs .nav-link.active {
    background: #A30B17;
    color: #fff;
}

.icon-bar{
    line-height: 0;
}

.logo img{
    max-width: 70px;
}
img.illustration{
    max-width: 80%;
}
.form-wapper{
    row-gap: 18px;
}
.form-wapper .input-group{
    height: 50px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.form-wapper .input-group .form-control{
    height: 100%;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0;
}

.select-block.no-border{
    padding: 5px 30px;
    height: 50px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.select2-container{
    height: 100%;
}
.select2-container .select2-selection--single{
    height: 100%;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
    top: 6px;
    right: -10px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
    color: #000;
    font-size: 18px;
    font-weight: 600;
}
.p-text{
    font-size: 14px;
    font-weight: 400;
    color: #000;
}
.p-text span{
    color: #A30B17;
}
.back-bar p{
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.otp-container {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.otp-input {
    width: 50px;
    height: 55px;
    text-align: center;
    font-size: 22px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
}

.otp-input:focus {
    border-color: #A00014;   /* your theme color */
    box-shadow: 0 0 5px rgba(160, 0, 20, 0.5);
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{
    background-color: #F6EDE1;
    color: #A30B17;
}


/* <------------- media start -------------> */
@media (max-width: 1300px) {

    .login-wrapper{
        max-width: 90%;
    }

}


@media (max-width: 992px) {


    .shape-bar-wapper::after{
        display: none;
    }

}

@media (max-width: 576px) {


    .login-wrapper{
        padding: 20px 0;
    }
    .login-wrapper .select-block.no-border{
        padding: 5px 10px;
    }
    .otp-input{
        width: 100%;
    }
}


/* <------------- media end -------------> */
