

*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
p{
line-height: 1.7;
font-size: 18px;
}
 a{
color: inherit;
text-decoration: none;
}
.section_caption{
text-align: center;
}
.section_caption span{
border: 1px solid;
color: #757575;
padding: 6px 14px;
text-transform: uppercase;
border-radius: 20px;
}
.section_title{
text-align: center;
margin-top: 30px;
padding: 0 100px;
}
.section_title h1{
font-size: 66px;
font-weight: 600;
}
.section_title_2{
margin-top: 25px;
font-size: 40px;
font-weight: 600;
text-align: center;
}
.styled_word{
font-family: 'Times New Roman', Times, serif;
font-weight: 400;
font-size: inherit;
}








.header_section {
background-color: black !important;

}









.login_section{
margin-top: 115px;
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: 80px ;
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;
}
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;
}
.success_message{
 color:green;   
}
.failure_message{
 color:red; 
}










@media only screen and (max-width: 768px) {

    /* all sections common responsiveness*/

    html, body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden; /* Prevents horizontal scrolling */
    }
    p{
font-size: 16px;
}
    .first_section {
    margin-top: 115px;
    padding-left: 30px;
    padding-right: 30px;
    }
    .section  {
    flex-wrap: wrap ;
    gap:30px;
    padding-left: 30px;
    padding-right: 30px;
    }
    .section .row{
        flex-wrap: wrap ;
        gap:30px;
    }
    .section .column  {
        width: 100% ;
    }
    .section .flex_container{
        flex-wrap: wrap ;
        gap: 30px;
    }
    .section .flex_item{
        width: 100% ;
        margin: 0;
    }

.section_title {
padding: 0;
}
.section_title_2 {
    font-size: 30px;
}
.section_title h1{
font-size: 46px;
}

.multiple_inputs{
gap: 10px;
}

}



@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 */
    }
p{
font-size: 16px;
}
    .first_section {
    margin-top: 115px;
    padding-left: 15%;
    padding-right: 15%;
    }
    .section  {
    flex-wrap: wrap ;
    gap:30px;
    padding-left: 15%;
    padding-right: 15%;
    }
    .section .row{
        flex-wrap: wrap ;
        gap:30px;
    }
    .section .column  {
        width: 100% ;
    }
    .section .flex_container{
        flex-wrap: wrap ;
    }
    .section .flex_item{
    width: calc(50% - 30px);
    margin: 15px;
    }
.section_title {
padding: 0;
}
.section_title_2 {
    font-size: 30px;
}
.section_title h1{
font-size: 58px;
}

/* section wise separate responsiveness*/


}