html {
	height: 100% !important; 
}

body {
	height: 100% !important; 
    font-family: 'Exo', sans-serif;
	overflow-y: scroll;
	overflow-x: hidden;
	font-size: 14px;
}

.mobile-container {
	margin: 0 auto;
    min-height: 100% !important;
    width: 100%;
}

.header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	box-shadow: 0 .100rem .100rem rgba(0,0,0,.075) !important;
}

.form {
 	width: 100%;
}

.form h2 {
	text-align: center;
	color: #1c2674;
}

.form .group {
	position: relative;
	padding-bottom: 1em;
}

.form .group label {
	position: absolute;
	pointer-events: none;
	top: 1em;
	-webkit-transition: 0.2s ease all;
	transition: 0.2s ease all;
	color: #ccc;
}

.form .group input[type=text], .form .group input[type=password], .form .group textarea {
	background-color: transparent;
	padding: 0.75em 1.5em;
	line-height: 1.5em;
	border: 0;
	display: block;
	width: 100%;
	margin-top: 2em;
	border-bottom: 1px solid #1c2674;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(96%, rgba(255, 255, 255, 0)), color-stop(4%, #1abc9c));
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 96%, #1c2674 4%);
	background-position: -100em 0;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	padding-left: 0.1em;
	-webkit-transition: 0.3s cubic-bezier(0.64, 0.09, 0.08, 1) all;
	transition: 0.3s cubic-bezier(0.64, 0.09, 0.08, 1) all;
}

.form .group input[type=text]:focus, .form .group input[type=text]:valid,
.form .group input[type=password]:focus, .form .group input[type=password]:valid,
.form .group textarea:focus, .form .group textarea:valid {
	background-position: 0 0;
}

.form .group input[type=text]:focus ~ label, .form .group input[type=text]:valid ~ label,
.form .group input[type=password]:focus ~ label, .form .group input[type=password]:valid ~ label,
.form .group textarea:focus ~ label, .form .group textarea:valid ~ label {
	color: #1c2674;
	font-size: 0.875em;
	top: -1.5em;
}

.form .group input[type=text]:focus, .form .group input[type=password]:focus, .form .group textarea:focus {
 	outline: none;
}

.form-check {
	line-height: 2.5;
}

.form-check-label span {
	 margin-left: 20px;
}

.form-check-input {
	width: 30px;
	height: 30px;
}

.form-check-input input[type=radio]:checked {
	color: #1c2674 !important;
}

.form .btn-login {
	background-color: transparent;
	padding: 0.75em 1.5em;
	line-height: 1.5em;
	border: 0;
	background-color: #1c2674;
	color: #fff;
	font-weight: bold;
	width: 100%;
	display: inline-block;
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
}

.form .btn-login:hover {
	-webkit-transform: translateY(-3px);
	transform: translateY(-3px);
	box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.2);
}

.card {
	border-radius: 10px;
	border:none ;
	box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2);
}

.card p,
.card h1,
.card h2,
.card h3,
.card h4,
.card h5,
.card h6 {
	margin: 0;
}

#file-input {
    display: none;
}

#sticky-footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: #1c2674;
	text-align: center;
}

#confirmModal .modal-dialog {
    -webkit-transform: translate(0,-50%);
    -o-transform: translate(0,-50%);
    transform: translate(0,-50%);
    top: 50%;
    margin: 0 auto;
}

@media (min-width: 1200px) {
	.mobile-container {
		width: 32.333333%;
		box-shadow: 0 .225rem .225rem rgba(0,0,0,.075) !important;
	}
}