.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
	-webkit-animation-duration: 0.6s;
	animation-duration: 0.6s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 0%, 0);
		transform: translate3d(0, 0%, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 0%, 0);
		transform: translate3d(0, 0%, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@-moz-keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.fadeIn {
	opacity: 0;
	-webkit-animation: fadeIn ease-in 1;
	-moz-animation: fadeIn ease-in 1;
	animation: fadeIn ease-in 1;
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-duration: 0.6s;
	-moz-animation-duration: 0.6s;
	animation-duration: 0.6s;
}

.fadeIn.first {
	-webkit-animation-delay: 0.15s;
	-moz-animation-delay: 0.152s;
	animation-delay: 0.15s;
}

.fadeIn.second {
	-webkit-animation-delay: 0.3s;
	-moz-animation-delay: 0.3s;
	animation-delay: 0.3s;
}

.fadeIn.third {
	-webkit-animation-delay: 0.45s;
	-moz-animation-delay: 0.45s;
	animation-delay: 0.45s;
}

.fadeIn.fourth {
	-webkit-animation-delay: 0.6s;
	-moz-animation-delay: 0.6s;
	animation-delay: 0.6s;
}

.fadeIn.fifth {
	-webkit-animation-delay: 0.75s;
	-moz-animation-delay: 0.75s;
	animation-delay: 0.75s;
}

.fadeIn.sixth {
	-webkit-animation-delay: 0.9s;
	-moz-animation-delay: 0.9s;
	animation-delay: 0.9s;
}

.fadeIn.seventh {
	-webkit-animation-delay: 1.05s;
	-moz-animation-delay: 1.05s;
	animation-delay: 1.05s;
}

.fadeIn.eighth {
	-webkit-animation-delay: 1.2s;
	-moz-animation-delay: 1.2s;
	animation-delay: 1.2s;
}

.fadeIn.ninth {
	-webkit-animation-delay: 1.35s;
	-moz-animation-delay: 1.35s;
	animation-delay: 1.35s;
}

.underlineHover:after {
	display: block;
	left: 0;
	bottom: -10px;
	width: 0;
	height: 2px;
	background-color: #56baed;
	content: "";
	transition: width 0.2s;
}

.underlineHover:hover {
	color: #0d0d0d;
}

.underlineHover:hover:after {
	width: 100%;
}

.formContent {
	-webkit-border-radius: 4px 4px 4px 4px;
	border-radius: 4px 4px 4px 4px;
	background: #fff;
	padding: 30px;
	width: 90%;
	max-width: 410px;
	min-height: 500px;
	position: relative;
	padding: 0px;
	-webkit-box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.7);
	box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.7);
	text-align: center;
}

.wrapper {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	min-height: 100%;
	/* padding: 10px; */
}

.vh100 {
	height: 100vh;
}

.box-title {
	color: #008cdb;
	font-size: 2.83rem;
}

.box-control {
	color: #008cdb;
	font-size: 1.55rem;
}

.box-info {
	color: #9c9c9c;
	font-size: 1.25rem;
}

.form-control {
	border-radius: .12rem;
	border: 1px solid rgba(2, 138, 217, 0.54);
	height: calc(1.7em + .65rem + 2px);
}

.btn-lg {
	border-radius: .12rem;
	background-color: #008cdb;
}

body {
	background-image: url('https://static-bettingadmin.com/default/trader/images/trading.jpg');
	background-size: cover;
	background-repeat: no-repeat;
}