body {
    font-family: 'Arial', sans-serif;
    margin: 0;
   
}


.register-form-section{
    padding: 20px 10%;
    
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120vh;
    gap:20px;
    
    
}

.form-text-left{
    width:50%;
}

.form-text-left h3{
    font-size: 3rem;
    color: #fff;
    
}

.register-form-section .container {
    max-width: 500px;
    width: 40%;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s;
}





.register-form-section .container:hover {
    transform: translateY(-10px);
}
.register-form-section .grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.register-form-section .full-width {
    grid-column: span 2;
}
.register-form-section input,.register-form-section select,.register-form-section textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.register-form-section input:focus,.register-form-section select:focus,.register-form-section textarea:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
    outline: none;
}
.register-form-section textarea {
    height: 100px;
}
.register-form-section .button-container {
    text-align: center;
    margin-top: 20px;
}
.register-form-section button {
    padding: 10px 20px;
    font-size: 16px;
    width:100%;
    cursor: pointer;
     background-image:linear-gradient(300deg, #08182f 30%, #1f878c 75%, #163a3a 90%);
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-image 0.3s, transform 0.3s;
}
.register-form-section button:hover {
  
    transform: translateY(-2px);
}
.register-form-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}




/*other banner*/

.otherbanner{
padding: 1rem ;
 background-image:linear-gradient(150deg, #08182f 30%, #1f878c 75%, #163a3a 90%);
color:#fff;
margin-left: 10%;
margin-right: 10%;
border-radius: 20px;
margin-bottom: 20px;
margin-top: 20px;
}
.innerOther{
display: flex;
align-items: center;
justify-content: space-between;
margin:0 5%;
}
.innerOther .fa-thumbs-up{
font-size: 3.5rem;
}
.callContct{
display: flex;
align-items: center;
}
.contact-now{
text-decoration: none;
width: 150px;
text-align: center;
padding: .5rem;
background-color: #eee;
border: none;
color: #001730;
border-radius: .5rem;
transition: 1s;
}

.innerOther a{
  text-decoration: none;

}

.calllcontactHeading h2{
  color: #fff;
  font-family: 'Roboto', sans-serif;
}

.calllcontactHeading p{
  color: #fff;
  font-family: 'Roboto', sans-serif;
}

.contact-now:hover{
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  transform: scale(1.029999);
  background-color: #fff;
}
.calllcontactHeading{
margin-left: 1rem;
}






/*mobile*/

@media(max-width:1050px)
{
    .register-form-section .container {
 
    width: 50%;
        
    }
}


@media(max-width:1050px)
{
    .register-form-section .container {
    width: 100%;
    }
    
    .form-text-left{
        display:none;
    }
    
    .register-form-section {
        justify-content:center;
         padding: 20px 3%;
          height: 100vh;
    }
}


@media(max-width:800px)
{
.calllcontactHeading h2{
font-size: 1.3rem;
}
}
@media(max-width:750px){
.innerOther{display: block;
}
.callContct{
display: block;
text-align: center;
}
.contact-now{
width:30%;
display: block;
margin: auto;
margin-top: 1rem;
}
.calllcontactHeading{
  margin-left: 0;
  }
}

@media (max-width: 580px ) {
  .calllcontactHeading h2{
    display: none;
  }
}




