@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


body {
    font-family: 'Poppins', sans-serif;
    background-color: #f7f7f7;
}

.centered-container {
    /* position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            padding: 20px;
            height: 80vh; */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    margin: 10px;

}

.carousel-container {
    /* flex: 1; */
    padding: 2px;
    width: 70%;

}

/* .login-form-container {
            flex: 1;
            padding: 20px;
        } */

.login-form-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 20px 0; */
    width: 70%;
}

.carousel-inner img {
    width: 100%;
    border-radius: 8px;
}

.login-form {
    position: relative;
    background-color: #fff;
    height: 5%;
    border-radius: 8px;
    padding:  0;
}

.heading {
    font-weight: 700;
    font-size: 1.4em;
    color: #289DD8;
    margin-bottom: .3rem !important;
    text-align: center;
}

.sub-heading {
    font-size: 0.8em;
    color: #289DD8;
    margin-bottom: 1.5rem !important;

}

.carousel-caption {
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    bottom: initial;
    text-align: center;


}

.carousel-p-text {
    font-size: 0.8rem;
    font-weight: 100;
    text-justify: distribute;
}

.carousel-item {
    position: relative;
    height: 90%
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
}

.label-size {
    font-size: 0.7em;
    color: #095B7E;
    font-weight: 600;
    margin-bottom: 0px;
}

.logo-img {
    width: 100%;
    height: 16vh;
    display: flex;
    justify-content: center;
}

.blue-border {
    border: 1px solid #095B7E;
    outline: none;
    height: 30px;
    border-radius: 5px;
}

.select2-hidden-accessible {
    border: 1px solid #095B7E;
    outline: none;
    height: 30px;
    border-radius: 5px;
}

.input-password-right-box {
    outline: none;
    border-left: none;
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.input-password-right-box img {
    height: 25px;
}

.input-group-prepend {
    height: 30px;
    width: 35px;
}

.input-group-text {
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    width: 100%;
}

.input-group-text img {
    height: 100%;
}

.option-text {
    font-size: 0.7em;
    color: rgba(135, 135, 135, 0.804);
}

.form-control:focus {
    outline: none;
    box-shadow: none !important;
    border: 1px solid #095B7E !important;
}

.logo-img img {
    height: 100%;
    width: auto;
}

.rememberMe-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7em;
    font-weight: 600;
    color: #095B7E;
}

.rememberMe-row a {
    color: #095B7E;
}

.form-check-input {
    position: absolute;
    margin-top: -0.1rem;
    margin-left: -0.8rem;
    width: 10px;
    height: 10px;
}

.btn-login {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    border-radius: 7px;
    font-weight: 600;

}

.carousel-indicators {
    bottom: 10px;
    /* Adjust position as needed */
}

.carousel-indicators li {
    background-color: rgb(200, 241, 248);
    /* Background color of inactive indicators */
    border: none;
    /* Border of inactive indicators */
    border-radius: 60px;
    /* Make indicators circular */
    width: 15px;
    height: 5px;
    margin: 0 6px;
    /* Spacing between indicators */
}

.carousel-indicators .active {
    background-color: rgb(41, 163, 245);
    /* Background color of active indicator */

}

.policy{
    font-size: 0.7rem;
}

@media (max-width: 768px) {

    /* .carousel-item {
                height: 300px;
            }
            .carousel-caption {
                font-size: 0.8rem;
            } */
    .carousel-container {
        display: none;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 200px;
    }

    .carousel-caption {
        font-size: 0.7rem;
    }

    .fs-6 {
        font-size: 0.8rem;
    }

    .fs-5 {
        font-size: 1rem;
    }
}


.login-with-option {
    display: flex;
    justify-content: space-between;
    font-size: 0.7em;
    font-weight: 600;
    color: #289DD8;
}

.company-name-text {
    font-size: 0.7em;

}

.company-name-text::placeholder {
    color: rgba(110, 110, 110, 0.596);
}

.form-radio-input {
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    margin-left: -0.8rem;
    margin-bottom: -2px;
    width: 12px;
    height: 12px;
    border: 1px solid #289DD8;
    /* Blue border */
    border-radius: 50%;
    outline: none;
    cursor: pointer;
}

.form-radio-input:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background-color: #007bff;
    /* Blue fill for the checked state */
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.form-check-label {

    cursor: pointer;
    /* Makes clicking the label also check the radio button */
}


.select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.select-wrapper::after {
    content: '\25BC';
    /* Unicode character for the arrow */
    position: absolute;
    top: 50%;
    right: 15px;
    /* Adjust as needed */
    transform: translateY(-50%);
    pointer-events: none;
    color: rgb(86, 86, 86);
    /* Color of the arrow */
    font-size: 10px;
    /* Size of the arrow */

}

select.form-control {
    -webkit-appearance: none;
    /* Removes default arrow in Webkit browsers */
    -moz-appearance: none;
    /* Removes default arrow in Firefox */
    appearance: none;
    /* Removes default arrow */
    width: 100%;
    border-radius: 5px;
    background-color: #fff;
    background-image: none;
    color: #333;
}

/* For Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* For Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}