* {
	margin: 0px;
	padding: 0px;
}

body, html {
	height: 100%;
}

body {
	background-image: url('../images/backgrounds/1.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	font-family: 'Roboto', sans-serif;
	padding-top: 50px; 
}

.action-box {
	width: 450px;
	background-color: white;
	border-radius: 5px;
	margin: 0px auto 0px;
	text-align: center;
	color: #414d5f;
	font-size: 14px;
	padding: 30px 0px 20px;
}

.action-box .strap {
	background-color: #F7FAFB;
	border-top: 1px #ECF2F4 solid;
	border-bottom: 1px #ECF2F4 solid;
	font-weight: bold;
	padding: 10px 0px;
	margin-bottom: 30px;
}

.action-box .logo {
	height: 44px;
	margin-bottom: 30px;
}

.action-box form {
	text-align: left;
	font-size: 13px;
	margin: 0px 40px;
}

.action-box .remember_me {
	padding-top: 3px;
}

.footer {
	position: fixed;
	bottom: 20px;
	left: 20px;
	font-size: 14px;
	color: #98a6ad;
}

.footer .badge {
	font-size: 11px;
}

.checkmark {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	display: block;
	stroke-width: 2;
	stroke: #fff;
	stroke-miterlimit: 10;
	box-shadow: inset 0px 0px 0px #23B397;
	animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
	margin: 0 auto;
}

.checkmark.error {
	box-shadow: inset 0px 0px 0px #F0643B;
	animation: fillerror .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__circle {
	stroke-dasharray: 166;
	stroke-dashoffset: 166;
	stroke-width: 2;
	stroke-miterlimit: 10;
	stroke: #23B397;
	fill: none;
	animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.error .checkmark__circle {
	stroke: #F0643B;
}

.checkmark__check {
	transform-origin: 50% 50%;
	stroke-dasharray: 48;
	stroke-dashoffset: 48;
	animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
	100% {
		stroke-dashoffset: 0;
	}
}
@keyframes scale {
	0%, 100% {
		transform: none;
	}
	50% {
		transform: scale3d(1.1, 1.1, 1);
	}
}
@keyframes fill {
	100% {
		box-shadow: inset 0px 0px 0px 50px #23B397;
	}
}
@keyframes fillerror {
	100% {
		box-shadow: inset 0px 0px 0px 50px #F0643B;
	}
}

[data-slidedown] {
	display: none;
}