:root {
    --primary-color: #0d6efd;
    --Secondary-color: #2b5785ff;
    --muted-color: #a3a3a3;
    --text-gry-color: #3f3f3f;
    --border-color: #cccccc;
    --white-color: #ffffff;
    --black-color: #000000;
}

/* Primary-btn */

.primary-btn {
    font-size: 15px;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 10px 45px;
    border-radius: 30px;
}

.btn-border-primary {
    border-radius: 30px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 40px;
}
.btn.focus,
.btn:focus {
    box-shadow: none;
}
textarea {
    border: 1px solid #aaacad;
    border-radius: 5px;
    margin-top: 8px;
}
.form-control:focus {
    box-shadow: 0px 0px 3px 0px #0000004f;
    border-color: var(--primary-color);
}

.form-select:focus {
    box-shadow: 0px 0px 3px 0px #0000004f;
    border-color: var(--primary-color);
}

.company-selection-btn {
    font-size: 16px;
    line-height: 1.5;
    background-color: var(--primary-color);
    /*margin-top: 18px;*/
    color: #ffffff;
    padding: 0 45px;
    height: 40px;
    border-radius: 30px;
}

a {
    color: #000000;
}

a:hover {
    color: var(--primary-color);
}

.checkbox-inline + .checkbox-inline,
.radio-inline + .radio-inline {
    margin-top: 6px;
}

.relative {
    position: relative;
}

.switcher {
    margin-bottom: 42px;
}

ul.switcher li {
    list-style-type: none;
    width: 50%;
    position: absolute;
    top: 0;
}

.first {
    left: 0;
}

.second {
    right: 0;
}

.d-flex {
    display: flex;
}

.label-text {
    color: var(--text-gry-color);
    font-size: 13px;
    padding-bottom: 3px;
    font-weight: 600;
}

.value-text {
    color: #000000;
    font-size: 16px;
    text-align: left;
    margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
    .login-section .row {
        margin-top: 10px;
    }
}

.login-container-wrapper {
    max-width: 400px;
    margin: 2% auto 5%;
    padding: 40px;
    box-sizing: border-box;
    position: relative;
    box-shadow: 0px 0px 3px 0px #0000004f;
}

.login-container-wrapper .tab1,
.login-container-wrapper .welcome {
    font-size: 16px;
    letter-spacing: 1px;
}

.login-container-wrapper li {
    text-align: center;
    padding: 0 15px;
    background-color: #f9f9f9;
    height: 50px;
    line-height: 50px;
    color: var(--text-gry-color);
    cursor: pointer;
}

.login-container-wrapper li a {
    color: #fff;
}

.login-container-wrapper li a:hover {
    color: #ccc;
    text-decoration: none;
}

.login-container-wrapper li a:active,
.login-container-wrapper li a:focus {
    color: #fff;
    text-decoration: none;
}

.login-container-wrapper li.active {
    background-color: transparent;
    box-shadow: none;
    background-color: var(--primary-color);
    color: var(--white-color);
}

.login-container-wrapper li.active a {
    padding-bottom: 5px;
}

.login input:focus + .fa {
    color: var(--primary-color);
}

.login-form .form-group {
    margin-right: 0;
    margin-left: 0;
}

/* .login-form i {
    position: absolute;
    top: 0;
    left: 19px;
    line-height: 52px;
    color: rgba(40, 52, 67, 1);
    z-index: 100;
    font-size: 16px;
} */
#login_form .loginFormInputGroupText, #reset-password-form .loginFormInputGroupText{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 0px;
}
#login_form .field_icon,  #reset-password-form .field_icon{
    font-size: 16px;
    padding: 0;
    text-align: center;
    line-height: 1.5;
    cursor: pointer;
}

.login-form .input-lg {
    font-size: 18px;
    height: 52px;
    padding: 10px 25px;
    border-radius: 0;
}

#login-link {
    text-decoration: none;
    padding-left: 0;
    font-size: 15px;
    font-weight: 500;
}

/* Otp-BOx */

#section-otp form input {
    display: inline-block;
    width: 40px;
    height: 40px;
    /* margin-right: 5px; */
}

/* SignUp */

.signup-title {
    /* color: var(--white-color);
    font-size: 16px;
    text-align: center;
    letter-spacing: 1px;
    background: var(--primary-color);
    padding: 14px; */
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
}

.sign-up-link {
    text-decoration: none;
    padding-left: 0;
    font-size: 15px;
    font-weight: 500;
}
.primary-btn:hover {
    background: #000;
    color: #fff;
}
.btn-border-primary:hover {
    background: #000;
    color: #fff;
}
.primary-color {
    color: var(--primary-color);
}
.section-alert {
    max-width: 400px;
    margin: 0px auto;
    font-size: 14px;
}

/*
* Loader
*/
.loader-container {
    display: none; /* Initially hide the loader */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(
        255,
        255,
        255,
        0.8
    ); /* Semi-transparent background */
    z-index: 9999; /* Ensure it appears on top of other content */
}

.loader {
    border: 5px solid var(--Secondary-color);
    border-top: 5px solid var(--primary-color); /* Primary border for animation */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite; /* Rotation animation */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
/*
* End of Loader
*/
.captcha {
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
}

.bg-light-orange {
    border: 1px solid #fd7e15 !important;
    background: rgba(253, 126, 21, 0.1) !important;
    color: #fd7e15;
}