

*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
 a{
color: inherit;
text-decoration: none;
}
.section_title_2{
font-size: 40px;
font-weight: 600;
text-align: center;
}















.login_section{
margin: 80px 0;
padding: 0 calc(30px + 25% );
width: 100%;
}
.login_section .row{
width: 100%;
display: flex;
justify-content: center;
}
.login_section .column{
width: 100%;
}
.login_section .content{
width: 100%;
}
.login_section .tab_list{
margin-top: 70px ;
display: flex;
justify-content: center;
gap: 20px;
}
.login_tab{
padding: 4px 10px;
border-radius: 18px;
font-size: 14px;
transition: color 0.2s;
cursor: pointer;
}
.login_tab.active {
border: 1px solid;
}
.tab_content {
width: 100%;
display: none;
}
.tab_content.active {
display: block;
}
.login_section .form{
    margin-top: 40px; 
    width: 100%;
}
.input{
    margin-top: 30px; 
    width: 100%;
}
.multiple_inputs{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
}
.multiple_inputs>*{
flex: 1;
}
.input_error{
color: red;
font-size: 14px;
}
 .password{
    margin-top: 8px ;
    height: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(0, 0, 0, .183);;
    border-radius: 3px;
}
.password i{
font-size: 20px;
color: gray;
padding-right: 10px;
}
.password input{
margin-top: 0 ;
border: none;
height: 100%;
}
input{
margin-top: 8px ;
font-size: 16px;
height: 50px;
width: 100%;
padding: 10px;
outline: none;
border: 1px solid rgba(0, 0, 0, .183);
border-radius: 4px;
}
textarea{
    margin-top: 8px ;
    border: 1px solid rgba(0, 0, 0, .183);
    height: 130px;
    width: 100%;
    padding: 10px;
    outline: none;
    font-size: 16px;
 }
.form_links{
margin-top: 15px ;
}
.form_links a{
color: #757575;
font-size: 14px;
text-decoration: underline;
}
.submit_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    color: whitesmoke;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    width: 100%;
    height: 50px;
}

.submit_btn:disabled {
    cursor: not-allowed;
}

.submit_btn .buttonText{
display: inline-block;
color: whitesmoke;
}

.submit_btn .spinner {
    display: none;
    border: 3px solid whitesmoke;
    border-left-color: #000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.submit_agreement span{
color: #757575;
font-size: 14px;
}
.response_message{
font-size: 14px;
}











@media only screen and (max-width: 768px) {

    /* all sections common responsiveness*/

    html, body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden; /* Prevents horizontal scrolling */
    }
    .section  {
    flex-wrap: wrap ;
    gap:30px;
    padding-left: 30px;
    padding-right: 30px;
    }
    .section .row{
        flex-wrap: wrap ;
        gap:30px;
    }
    .section .column  {
        width: 100% ;
    }

.section_title_2 {
    font-size: 30px;
}



}



@media only screen and (min-width: 769px) and (max-width: 1024px) {

    /* all sections common responsiveness*/
    html, body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden; /* Prevents horizontal scrolling */
    }
    .section  {
    flex-wrap: wrap ;
    gap:30px;
    padding-left: 15%;
    padding-right: 15%;
    }
    .section .row{
        flex-wrap: wrap ;
        gap:30px;
    }
    .section .column  {
        width: 100% ;
    }
.section_title_2 {
    font-size: 30px;
}

}