.university-row{
	border-top-left-radius: 20px; 
	border-top-right-radius: 20px; 
	padding-top: 40px; 
	border-top: 10px solid #FB2E86; 

	border-bottom-left-radius: 30% 20%; 
	border-bottom-right-radius: 30% 20%; 
	padding-bottom: 60px; 
	border-bottom: 10px solid #e4ea00;
}
.university-name{
	-webkit-transform: scaleY(1.5); 
	transform: scaleY(1.5);
	color: #fff;
	font-size: 40px;
	font-weight: 600;

}
.university-img{
	margin-left: -100px;
}
@media only screen and (max-width: 786px) {
	.university-row{
		border-bottom-left-radius: 20% 10%; 
		border-bottom-right-radius: 20% 10%;
		padding-top: 0px; 
		border-top: 0px solid #FB2E86;
		padding-bottom: 40px; 
		border-bottom: 5px solid #e4ea00;
	}
	.university-img{
		margin-left: 0px;
	}
	.university-name{
		font-size: 25px;
		margin-top: -30px;
		padding: 5px;
		background-color: seagreen;
		border-top: 2px solid yellow;
		border-bottom: 2px solid yellow;
		border-radius: 5px;
	}
}

.u-form-section{
	background: linear-gradient(180deg, #1ab89f 0%, #117364 100%);
}

/* University Form  */

.form-bg {
  border: 2px solid red;	
  background: linear-gradient(#141e30, #243b55);
}

.btn-neon-move {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  color: #03e9f4;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  transition: .5s;
  letter-spacing: 4px
}

.btn-neon-move:hover {
  background: #fff;
  color: #000;
  font-weight: 600;
  border-radius: 5px;
  box-shadow: 0 0 3px #03e9f4,
              0 0 20px #03e9f4,
              0 0 40px #03e9f4,
              0 0 80px #03e9f4;
}

.btn-neon-move span {
  position: absolute;
  display: block;
}

.btn-neon-move span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #03e9f4);
  animation: btn-anim1 1s linear infinite;
}

@keyframes btn-anim1 {
  0% {
    left: -100%;
  }
  50%,100% {
    left: 100%;
  }
}

.btn-neon-move span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #03e9f4);
  animation: btn-anim2 1s linear infinite;
  animation-delay: .25s
}

@keyframes btn-anim2 {
  0% {
    top: -100%;
  }
  50%,100% {
    top: 100%;
  }
}

.btn-neon-move span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #03e9f4);
  animation: btn-anim3 1s linear infinite;
  animation-delay: .5s
}

@keyframes btn-anim3 {
  0% {
    right: -100%;
  }
  50%,100% {
    right: 100%;
  }
}

.btn-neon-move span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #03e9f4);
  animation: btn-anim4 1s linear infinite;
  animation-delay: .75s
}

@keyframes btn-anim4 {
  0% {
    bottom: -100%;
  }
  50%,100% {
    bottom: 100%;
  }
}