.content-login{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
}
.box-login{
	border-radius: 80px 0 0 80px;
	box-shadow: 0 0 30px rgba(0,0,0,0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 90%;
	background: linear-gradient(137deg,rgba(42,48,66,1) 0%,rgba(16,23,33,1) 100%);
	width: 50%;
	max-width: 600px;
	min-width: 400px;
	position: relative;
}
.box-login::before{
	border-radius: 85px 0 0 85px;
	content:"";
	width: calc(100% + 5px);
	height: calc(100% + 10px);
	position: absolute;
	left: -5px;
	top: -5px;
	background: linear-gradient(90deg, #009FFF, #ec2F4B);
	background-size: 400%;
	z-index: -1;
	animation: changeColors 4s ease-in-out infinite;
}

.box-login form figure{
	text-align: center;
	margin-bottom: 50px;
}
.box-login form img{
	max-width: 80%;
	margin: 0 auto;
}
.box-login .title{
	color: #eee;
	margin: 0;
	margin-bottom: 30px;
}
.box-login .content-input label{
	color: #aaa;
	margin: 0 auto;
	font-size: 0.75rem;
}
.box-login .form-control{
	box-shadow: none;
	outline: none;
	background: transparent;
	border: none;
	border-bottom: 1px solid #fff;
	color: #fff;
	border-radius: 0;
	font-weight: 600;
	font-size: 1.1rem;
	letter-spacing: 0.07rem;
}
.button-login{
	margin-top: 30px;
	color: #fff;
	width: 100%;
    border-radius: 50px;
    display: block;
    padding: 10px 5px;
    background: radial-gradient( circle farthest-corner at 10% 20%,  rgba(0,152,155,1) 0.1%, rgba(0,94,120,1) 94.2% );
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.15);
}
.button-login:hover,
.button-login:focus{
	transform: translateY(-5px);
	box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
}


.modal-login .close{
	background: #c93737;
    outline: none;
    border: none;
    height: 30px;
    width: 30px;
    color: #fff;
    border-radius: 5px;
}

.modal-login .modal-header,
.modal-login .modal-footer{
	border: none;
}
.modal-login .modal-content{
	padding: 15px;
	background: linear-gradient(137deg,rgba(42,48,66,1) 0%,rgba(16,23,33,1) 100%);
}
.modal-login .modal-title{
	color: #fff;
}
.modal-login .check-radio{
	background: transparent;
	border: 2px dashed #ddd;
	color: #ddd;
	border-radius: 100px;
	width: 100%;
	display: block;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
	font-weight: 600;
}
.modal-login .check-radio:hover{
	border: 2px dashed #fff;
	color: #fff;
}
.modal-login .modal-body input[type="radio"]{
	display: none;
}
.modal-login .modal-body input[type="radio"]:checked + label{
	background: #fff;
	border: 2px solid #fff;
	color: rgba(0,94,120,1);
	transform: translateY(-5px);
	box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
}
.modal-login .modal-body input[type="radio"]:checked + label::before{
	content:"✔";
	background: radial-gradient( circle farthest-corner at 10% 20%,  rgba(0,152,155,1) 0.1%, rgba(0,94,120,1) 94.2% );
	padding: 4px;
	height: 30px;
	width: 30px;
	position: relative;
	border-radius: 50px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 5px;
}
.modal-login .modal-body label{
	color: #fff;
}
.modal-login .modal-body .form-control:focus,
.modal-login .modal-body .form-control{
	border: none;
	border-radius: 0;
	border-bottom: 2px solid #fff;
	color: #fff;
	background: transparent;
	box-shadow: none;
	font-size: 1.125rem;
}
.modal-login .modal-body .form-control::placeholder{
	color: #d5d5d5;
}

@media screen and (max-width: 425px){
	.box-login{
		width: 90%;
		max-width: 90%;
		min-width: 50%;
	}
	.box-login form.w-50{
		width: 80%!important;
	}	
	.box-login form .form-control{
		font-size: 0.8rem;
	}
}



@keyframes changeColors{
	0%, 100%{
		background-position: center center;
	}
	50%{
		background-position: left center;
	}
	75%{
		background-position: center right;
	}
}
