* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #667eea33 0%, #764ba26e 100%),url(../images/apply-nowImg.jpg);
    color: #333;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    /* justify-content: flex-end; */
    align-items: center;
    padding: 20px;
    background-repeat: no-repeat;
    background-size: cover;
}
.ee-form-widget .controls {
    display: flex !important;
    flex-direction: column-reverse !important;
    justify-content: flex-end !important;
}
.successMsg {
    font-size: 12px;
    margin-bottom: 6px;
    position: relative;
    background: #339433e6;
    color: #ffffff;
    padding: 5px 10px;
    bottom: 10px;
    border-radius: 0px;
}
.errorMsg {
    font-size: 12px;
    margin-bottom: 6px;
    position: relative;
    background: #ff7167;
    color: #ffffff;
    padding: 5px 10px;
    bottom: 10px;
    border-radius: 0px;
}

.ee-form-widget-enter-otp, .ee-form-widget-feedback {
    background-color: #ffffff;
}

.container {
    /* background-color: white; */
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    padding: 20px 12px 0;
        /* backdrop-filter: blur(50px); */
        background-color: #ffffff;
}
.imgLg {
    text-align: center;
}

.imgLg img{
    width: 150px;
}

#title {
    text-align: center;
    color: #505981;
    margin-bottom: 0;
    font-size: 22px;
}

#description {
    text-align: center;
    color: #140f0f;
    padding: 5px;
    margin-bottom: 15px;
    border-bottom: 1px solid #cbcbcb;
    font-size: 12px;
}
.mobFldDiv {
    display: flex;
}
.mobFldDiv #cCode {
    width: 70px;
}
.mobFldDiv #mobile{
    margin-left: 5px;
    margin-right: 5px;
}
#sendOTP {
    background-color: #fd6161;
    color: white;
    border: none;
    padding: 8px 4px;
    border-radius: 5px;
    font-size: 12px;
    width: 150px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.resetBtn {
    background-color: #dfdfdf;
    color: #28282891;
    border: none;
    padding: 11px;
    font-weight: 600;
    width: 80px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
#bccmCMN-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 14px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

#ee-form-1 input[type="text"],
#ee-form-1 input[type="email"],
#ee-form-1 input[type="number"],
#ee-form-1 select,
#ee-form-1 textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    background: #ffffff91;
    border: 1px solid #667eea70;
    height: 40px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 5px rgba(102, 126, 234, 0.5);
}
input#ee-form-1-form-1-mobile {
    height: 40px;
}
div#ee-form-1-modal-swapper {
    padding-top: 0;
    padding-bottom: 0;
}
span.select2-selection.select2-selection--single {
    height: 38px;
}

#submit {
    background-color: #667eea;
    color: white;
    border: none;
    padding: 11px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#submit:hover {
    background-color: #5a4fd1;
}

@media (max-width: 767px) {
    body {
        padding: 4px;
    }
    .container {
        padding: 10px;
        margin: 0 10px;
    }
    #title {
        text-align: center;
        color: #4a4a4a;
        margin-bottom: 0;
        font-size: 18px;
    }
    .mobFldDiv #cCode {
        width: 70px;
    }
    .mobFldDiv #mobile {
        margin-left: 2px;
        margin-right: 2px;
    }
    .radio-group,
    .checkbox-group {
        flex-direction: column;
    }
}