@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&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');
body {
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    font-family: 'Merriweather Sans','sans';
    font-family: "Poppins", serif;
    
}

.main_body{

    width: 100%;
    display: flex;
    justify-content: center;

}
.container {
    display: flex;
    width: 90%;
    max-width: 1200px;
    min-height: 500px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    box-shadow: 0px 0px 10px 2px rgb(212, 212, 212) ;

}
.image-section {
    flex: 1;
    background: url('https://via.placeholder.com/600x400') no-repeat center center;
    background-size: cover;
}
.form-section {
    flex: 1;
    padding-left: 40px;
    display: flex
;
    flex-direction: column;
    padding-right: 40px;
}
.form-section h1 {
    margin-bottom: 30px;
    font-size: 24px;
    text-align: left;
}
.form-section form {
    display: flex;
    flex-direction: column;
}
.form-section form input {
    font-family: "Open Sans", serif;
    margin-bottom: 20px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.form-section form .captcha {
    display: flex;
    align-items: center;
}
.form-section form .captcha span {
    margin-right: 10px;
    font-size: 18px;
    font-weight: bold;
}
.form-section form button {
    padding: 1em 2em;
    font-family: "Poppins", serif;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    color: #2c9caf;
    transition: all 1000ms;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    outline: 2px solid #2c9caf;
    width: 150px;
    background-color: white;
    margin-bottom:30px;
}

  .form-section form button:hover {
    color: #ffffff;
    transform: scale(1.1);
    outline: 2px solid #70bdca;
    box-shadow: 4px 5px 17px -4px #268391;
  }
  
  .form-section form button::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #2c9caf;
    transform: skewX(45deg);
    z-index: -1;
    transition: width 1000ms;
  }
  
  .form-section form button:hover::before {
    width: 250%;
  }
  .csn_text{
      font-size:20px;
  }
  .form-section img{
    height: 200px;
    width: 200px;
    
  }

  @media only screen and (max-width: 600px) {

    .main_body{

        width: 100%;
        display: flex;
    
    }
      .csn_text h1{
      font-size:30px;
  }
  .form-section img {
    height: 150px;
    width: 150px;
    margin-top:40px;
}
.container{
    min-height: 400px;
    padding-bottom: 40px;
}
  }