/* Custom CSS */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Variable */
:root {
    --skyblue-color : #3E6ACC;
    --bodytext-color : #79808F;
    --heading-color : #07215A;
    --input-border: #D3DDE5;
    --placeholder-color : #AAADB6;
    --font-family: 'Poppins', sans-serif;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--input-border); 
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--bodytext-color); 
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--skyblue-color); 
}

.brand_icon {
    max-width: 270px;
    width: 100%;
    margin-bottom: 40px;
}

.form_card {
    height: 100%;
    min-height: 100vh;
    width: 100%;
    font-family: var(--font-family);
    display: flex;
    align-items: center;
    max-width: 1250px;
    margin: auto;
}

.card_box {
    height: 100%;
    box-shadow: 0 4px 24px 0 rgba(34 ,41, 47 , 10%);
}

/* Left Side */

.form_left_content {
    padding: 70px 50px;
}
.form_title {
    font-size: 36px;
    font-weight: 600;
    font-family: var(--font-family);
    color: #262825;
    line-height: 46px;
    margin-bottom: 40px;
}
p.small_description {
    color: #262825;
}
.cs_form_label{
    margin-bottom: 10px;
    color: #262825;
    font-size: 14px;
    width: 100%;
}
.cs_form_check_label{
    color: var(--bodytext-color);
    font-size: 14px;
}

.lable_link.right_text {
    margin-left: auto;
    float: right;
    color: var(--skyblue-color);
}
.lable_link.right_text:hover{
    color: var(--heading-color);
}

.custom_login_form .form-group{
    margin-bottom: 30px;
}
.input_fields {
    padding: 19px 12px;
    border: 1px solid var(--input-border);
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-family);
}

.input_fields::placeholder{
    color: var(--placeholder-color);
}

.custom_btn_sm {
    padding: 14px 36px !important;
    margin-top: 30px;
    margin-bottom: 20px;
    background: #0E1E05 !important;
    border-color: #0E1E05 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    text-transform: capitalize;
    font-family: var(--font-family);
}
.bottom_form_line{
    font-family: var(--font-family);
    font-size: 12px;
    color: var(--bodytext-color);
}
.bottom_form_line a{
    color: #457F2C;
}
.bottom_form_line a:hover{
    color: #0e1e05;
}
select.input_fields{
    appearance: button;
    -webkit-appearance: button;
}
.side_image{
    height: 100%;
    display: flex;
    background-image: url('/images/side_frame_new.png');
    background-size: cover;
    background-position: center;
}


.custom_login_form.big_forms {
    max-height: 370px;
    overflow: hidden;
    position: relative;
    overflow-y: auto;
    height: 100%;
    padding: 20px;
}

#dropdownMenuButton{
    position: relative;
}

#dropdownMenuButton:after {
    content: '\25BD';
    color: gray;
    font-size: 11px;
    border-radius: 140px;
    padding: 4px;
}



/* X-SM Devices */
@media (max-width:442px){
    .card_box {
        margin: 0 !important;
    }
    .form_left_content {
        padding: 70px 20px;
    }
   
}

/* SM Devices */
@media (max-width:768px){
    .col-divider{
        margin-bottom: 30px;
    }
    .xs-p-0{
        padding-left: 0;
        padding-right: 0;
    }
    .custom_login_form.big_forms {
        max-height: 100%;
        overflow: unset;
        position: relative;
        overflow-y: unset;
        height: 100%;
        padding: 0;
    }
}