:root {
  --input-padding-x: 1.5rem;
  --input-padding-y: .75rem;
}

.card-signin {
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
}

.card-signin .card-title {
  margin-bottom: 2rem;
  font-weight: 300;
  font-size: 1.5rem;
}

.card-signin .card-body {
  padding: 2rem;
}

.form-signin {
  width: 100%;
}

.form-signin .btn {
  font-size: 80%;
  border-radius: 5rem;
  letter-spacing: .1rem;
  font-weight: bold;
  padding: 1rem;
  transition: all 0.2s;
}

.form-label-group {
  position: relative;
  margin-bottom: 1rem;
}

.form-label-group input {
  height: auto;
  border-radius: 2rem;
}

.form-label-group>input,
.form-label-group>label {
  padding: var(--input-padding-y) var(--input-padding-x);
}

.form-label-group>label {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  margin-bottom: 0;
  /* Override default `<label>` margin */
  line-height: 1.5;
  color: #495057;
  border: 1px solid transparent;
  border-radius: .25rem;
  transition: all .1s ease-in-out;
}

.form-label-group input::-webkit-input-placeholder {
  color: transparent;
}

.form-label-group input:-ms-input-placeholder {
  color: transparent;
}

.form-label-group input::-ms-input-placeholder {
  color: transparent;
}

.form-label-group input::-moz-placeholder {
  color: transparent;
}

.form-label-group input::placeholder {
  color: transparent;
}

.form-label-group input:not(:placeholder-shown) {
  padding-top: calc(var(--input-padding-y) + var(--input-padding-y) * (2 / 3));
  padding-bottom: calc(var(--input-padding-y) / 3);
}

.form-label-group input:not(:placeholder-shown)~label {
  padding-top: calc(var(--input-padding-y) / 3);
  padding-bottom: calc(var(--input-padding-y) / 3);
  font-size: 12px;
  color: #777;
}

/* Fallback for Edge
-------------------------------------------------- */

@supports (-ms-ime-align: auto) {
  .form-label-group>label {
    display: none;
  }
  .form-label-group input::-ms-input-placeholder {
    color: #777;
  }
}

/* Fallback for IE
-------------------------------------------------- */

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
  .form-label-group>label {
    display: none;
  }
  .form-label-group input:-ms-input-placeholder {
    color: #777;
  }
}

/* Register Modal */
.main-content{
	border-radius: 20px;
	box-shadow: 0 5px 5px rgba(0,0,0,.4);
	display: flex;
	background-color: #25285f;
}
.company__info{
	background-color: #FFF;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #fff;
	border:1px solid #25285f;
}
.company__logo img{
	height:250px;
	width:250px;
}
.company_title{
	color: #25285f;
}
.login_form{
	background-color: #25285f;
	border-top-right-radius:20px;
	border-bottom-right-radius:20px;
	border:1px solid #25285f;
}
.form__input{
	width: 80%;
	border:0px solid transparent;
	border-radius: 0.25rem;
	border-bottom: 1px solid #aaa;
	padding: 1em .5em .5em;
	padding-left: 2em;
	outline:none;
	margin:0.6em auto;
	transition: all .5s ease;
}
.form__input:focus{
	border-bottom-color: #25285f;
	box-shadow: 0 0 5px rgba(0,80,80,.4); 
	border-radius: 4px;
}
.custom-control-2{
	width: 60%;
	margin: 0 auto;
}

/*Admission Form */
.progressbar {
	overflow: hidden;
	counter-reset: step;
}
.progressbar li {
	list-style-type: none;
	color: black;
	text-transform: uppercase;
	font-size: 12px;
	width: 33%;
	float: left;
	position: relative;
}
.progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 25px;
	line-height: 25px;
	display: block;
	font-size: 12px;
	color: #333;
	background: #1111;
	border-radius: 3px;
	margin: 0 auto 5px auto;
	font-weight: bold;

}
/*progressbar connectors*/
.progressbar li:after {
	content: '';
	width: 90%;
	height: 2px;
	background:#f1f1f1AA;
	position: absolute;
	left:-45%;
	top: 25%;
}
.progressbar li:first-child:after {
	content: none; 
}
.progressbar li.active:before,  .progressbar li.active:after{
	background: #27AE60;
	color:white;
}
@media screen and (max-width: 670px) {
	.company__logo img{
		height:140px;
		width:140px;
		padding-top: 1rem;
	}
	.custom-control{
		width: 80%;
	}
	.progressbar li {
		width: 30%;
		height:80px;
	}
	.progressbar li:nth-child(4):after {
		content: none; 
	}
	.progressbar li:after {
		top: 15%;
	}
}