


@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
 h1,h2,h3,h4,h5{
font-weight: 600;
} .decorated_heading_1{     font-weight: 600;
     
    font-size: 24px;
    text-align: left;
}

.decorated_heading_2{     font-weight: 600;
     
    font-size: 24px;
    text-align: center;
}

.paragraph{
    text-align: justify;
}
input,select,textarea{
    padding: 5px;
    outline: none;
}
button{
cursor: pointer;
}
a{
    text-decoration: none;
}










.form_section{
  display: flex;
  width: 100%;
  height: 100vh;
}
.form_section .coloumn_1{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}
.form_section .content{
margin-top: 70px;
width: 35%;
}
.form_section .form_header{
display: flex;
justify-content: space-between;
align-items: center;
}
.form_header h3{
font-weight: 600;
}
.logo{
    height: 100%;
    display: flex;
    align-items: center;
    color: black;
}
.logo img{
width: 150px;
    }
.form_section .other_links{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.form_section .other_links a{
color:green;
}
.form_section .input{
margin-top: 20px;    
}
.form_section input{
height: 40px; 
width: 100%;
border: 1px solid gray;
border-radius: 3px;
}
.form_section .multiple_inputs{
    display: flex;
    align-items: center;
    gap: 12px;
}
.form_section .multiple_inputs>*{
    width: 100%;
}

 .password{
    height: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid gray;
    border-radius: 3px;
    padding: 5px;
}
.password i{
font-size: 20px;
color: gray;
}

.password input{
border: none;
padding: 0;
height: 100%;
}
.iti{
width: 100%;
}
.form_section .policy_notice {
    bottom: 10px;
    left:0;
    width: 100%;
    position: fixed;
    text-align: center;
    font-size:14px;
}
.form_section .policy_notice a{
color:green;
}
.submit_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: green;
    cursor: pointer;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    width: 100%;
    height: 40px;
}

.submit_btn:disabled {
    background-color: green;
    cursor: not-allowed;
}

.submit_btn .buttonText{
display: inline-block;
color: white;
}

.submit_btn .spinner {
    display: none;
    border: 4px solid white;
    border-left-color: #000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    vertical-align: middle;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.response_message{
 margin-bottom:20px;
 text-align:center;
}
.success_message{
 color:green;   
}
.failure_message{
 color:red; 
}

@media only screen and (max-width: 768px) {


    .section   {
    padding: 0 20px;
    font-size:14px;
    }
    .section .content  {
        position: relative;
        width: 100% ;
    }
    .form_section .multiple_inputs{
    gap: 8px;
   }
    .form_section .policy_notice {
    padding:0 20px;
    font-size:12px;
}
  }









  @media only screen and (min-width: 769px) and (max-width: 1024px) {


    .section .content  {
        position: relative;
        width: 80% ;
    }
    .section   {
    padding: 0 30px;
    font-size:14px;
    }
    .form_section .policy_notice {
    padding:0 30px;
    font-size:14px;
}
  }