/* registration section */
.registration-section {
  padding: 40px 0;
  background: linear-gradient(180deg, white, rgb(86, 191, 226), #122e5a);
}
.reg-form {
  padding: 20px 10px 10px 12px;
  background-color: #f5f5f5;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  /* border: 2px solid #3f71b3; */
}
.reg-box {
  display: flex;
  margin-bottom: 15px;
  justify-content: space-between;
}
.reg-box > div {
  width: 46%;
}
.form-label {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
}
.form-control {
  border: 1px solid #252525;
  width: 65%;
  font-size: 14px;
  margin-left: auto;
  text-transform: capitalize;
}
.message {
  height: 100px !important;
  margin-left: auto;
  border-radius: 10px;
  padding: 5px 10px;
  width: 65%;
}

.submit-btn {
  background-color: rgb(0, 105, 204);
  color: white;
  border: none;
  padding: 7px 5px;
  border-radius: 22px;
  font-weight: 500;
  min-width: 140px;
  height: fit-content;
}
.submit-btn:hover {
  background-color: #ff9500;
  transition: all 0.3s ease-in-out;
}

.registration-section .title3 {
  margin-bottom: 28px;
  text-align: center;
  color: #001d53;
}

.captcha .form-control{
    width:100%;
    margin-left:0;
}
@media screen and (max-width: 576px) {
  .reg-box > div {
    width: 100%;
    margin-top: 12px;
  }
  .reg-box {
    display: block;
  }
  .form-label,
  .form-control,
  .message {
    font-size: 12px;
  }
  .submit-btn{
    width: 100%;
  }
  
  .banner-section{
    background-position: center;
    background-size: cover;
  
}

}
