body {
  background: #f0f7f7;
}
section.main_wrp {
  display: flex;
  align-items: center;
  min-height: 100vh;
}
.main_wrp:before {
  position: absolute;
  content: "";
  width: 70%;
  height: 100%;
  top: 0;
  right: 0;
  background: linear-gradient(137deg, rgb(31 58 108) 0%, rgb(45, 53, 68) 100%);
  background-size: 400% 400%;
  animation: gradient 10s ease infinite;
  background-color: #a10212;
  clip-path: polygon(100% -150%, 100% 100%, 0% 100%);
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.main_wrp .container {
  position: relative;
}
.form-card {
  box-shadow: 0px 0px 15px 2px rgb(0 0 0 / 10%);
  border-radius: 30px;
}
.form-view .form-title-caption {
  position: absolute;
  top: 4rem;
  text-align: right;
  padding: 22px 40px;
  background: #fff;
  border-radius: 0 14px 14px 0;
}
.main_wrp .form-view {
  border-radius: 30px 0 0 30px;
  overflow: hidden;
}
.main_wrp .form-content {
  border-radius: 0 30px 30px 0;
  overflow: hidden;
}
.form-style .btn {
  background: #0463ea;
  background: -webkit-radial-gradient(center, #3731d8, #71cac7);
  background: -moz-radial-gradient(center, #3731d8, #71cac7);
  background: radial-gradient(ellipse at center, #09c6f9, #0572ec);
}
.main_wrp .form-view h1 {
  color: #007bff;
  line-height: 24px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #007bff;
  margin-bottom: 0;
}
.main_wrp .form-view h1 small {
  font-size: 20px;
}
.form-style input {
  border: 0;
  height: 50px;
  border-radius: 0;
  background: #f0f7f7;
  background: #ffffff;
  box-shadow: 0px 0px 15px 2px rgb(0 0 0 / 10%);
  border-radius: 90px;
}
.form-group i.fa {
  position: absolute;
  font-size: 22px;
  left: 20px;
  top: 14px;
}
.form-style input:focus {
  box-shadow: none;
  outline: 0;
  background-color: #f0f7f7;
}
.sideline {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ccc;
}
button {
  font-size: 14px;
}
.sideline:before,
.sideline:after {
  content: "";
  border-top: 1px solid #ebebeb;
  margin: 0 20px 0 0;
  flex: 1 0 20px;
}
.sideline:after {
  margin: 0 0 0 20px;
}
.school-content .fa {
  width: 20px;
}
@media (max-width: 1400px) {
  .school-content h4 {
    font-size: 18px;
  }
  .school-content p {
    font-size: 13px;
  }
}
@media (min-width: 768px) {
  .main_wrp .form-view {
    min-height: 80vh;
  }
}
@media (max-width: 767px) {
  .main_wrp:before {
    display: none;
  }
  .main_wrp .form-content {
    border-radius: 30px 30px 30px 30px;
  }
  .form-card {
    background: #fff;
  }
  .main_wrp .form-view {
    border-radius: 30px;
  }
  .main_wrp .form-content {
    background: #1c53a0;
  }
}
@media (min-width: 1440px) {
  .form-view h2 {
    width: 75%;
  }
}