body {
	height: 100%;
	overflow: hidden;
	background: #ccc;
	font-family: 'Open Sans', sans-serif;
}

* {
	font-family: 'Open Sans', sans-serif;
}

img {
	max-width: 100%;
}

.navbar-toggler {
	color: white;
}

.section-content {
	padding: 5rem 0;
}

.display-3 {
	font-size: 2.5rem;
	font-weight: 300;
	color: white;
}

.text-danger {
	color: #00b9b2 !important
}

.text-warning {
	color: #b2263a !important;
}

#cover {
	padding-bottom: 100% !important;
}

.carousel {
	position: absolute;
	right: 40%;
	width: 60%;
	top: 3rem;
}

.text-muted {
	color: #ffffff !important;
}

footer {
	padding-top: 20px;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

*,
::after,
::before {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}

#cover {
	padding-top: 8rem;
	padding-bottom: 3.5rem;
	background-size: cover;
	color: red !important;
	height: 100%;
	text-align: center;
	display: flex;
	align-items: center;
}

#cover-caption {
	position: absolute;
	right: 0%;
	width: 40%;
	top: 10%;
}

/* Alterando a cor do placeholder */
.altera-cor-placeholder::-webkit-input-placeholder {
	color: white;
}

.altera-cor-placeholder:-moz-placeholder {
	color: white;
}

.altera-cor-placeholder::-moz-placeholder {
	color: white;
}

.altera-cor-placeholder:-ms-input-placeholder {
	color: white;
}

.form-control {
	color: black;
}

@media only screen and (min-width: 0px) and (max-width: 1024px) {

	#cover-caption {
		position: absolute;
		right: 25%;
		width: 50%;
		top: 10%;
	}

	.carousel {
		width: 0%;
	}
}

@media (max-width: 768px) {
	#cover-caption {
		position: absolute;
		right: 0%;
		width: 100%;
		top: 10%;
	}
}

@media (max-width: 543px) {

	#cover-caption {
		position: absolute;
		right: 0%;
		width: 100%;
		top: 10%;
	}

	.display-3 {
		font-size: 2.5rem;
		font-weight: 300;
		width: 100%;
		color: white;
	}
}

/*--------------------------------*/
h2 {
	padding: 32px 0;
	color: white;
}
.box {
	width: 100%;
	max-width: 360px;
	text-align: center;
}

/*----- Muda bgcolor do autocomplete -----*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-transition: "color 9999s ease-out, background-color 9999s ease-out";
    -webkit-transition-delay: 9999s;
}

.btn-primary {
	background: white;
	border: 2px solid white;
	color: #19286E;
	font-weight: bold;
	margin-top: 32px;
}

.btn-primary:hover {
	background: #19286E;
	border: 2px solid #19286E;
	color: white;
}

.btn-secondary {
	background: white;
	border: 2px solid #19286E;
	color: #19286E;
	font-weight: bold;
	margin-top: 32px;
}

.btn-secondary:hover {
	background: #19286E;
	border: 2px solid #19286E;
	color: white;
}
.form-control,
.btn {
	font-size: 16px;
	border-radius: 4rem;
	height: 48px;
}

.form-control {
	padding: 16px;
}

.box .form-control {
	background-color: transparent;
	color: white;
	border: 2px solid white;
	margin-bottom: 16px;
}

.box .form-group {
	margin-bottom: 16px;
}

input {
	height: 48px;
	outline:none;
}

.box input {
	background-color: transparent !important;
	color: white;
}

.box input::placeholder {
	/* Firefox, Chrome, Opera */
	color: white !important;
}

.box input:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: white !important;
}

.box input::-ms-input-placeholder {
	/* Microsoft Edge */
	color: white !important;
}

.box .form-control:focus {
	background-color: transparent;
	color: white;
	border-color: white;
	box-shadow: none;
	-webkit-box-shadow: none;
}

.box .link {
	color: white;
}

.box .link:hover {
	color: white;
	text-decoration: underline !important;
}

.box .link:focus,
.link:active {
	color: white;
	text-decoration: none;
}

.login-background {
	width: 100%;
	height: 100%;
	min-height: 100vh;
	background: #00b8b1;
	background: -moz-radial-gradient(center, ellipse cover, #00b8b1 0%, #19286e 100%);
	background: -webkit-radial-gradient(center, ellipse cover, #00b8b1 0%, #19286e 100%);
	background: radial-gradient(ellipse at center, #00b8b1 0%, #19286e 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00b8b1', endColorstr='#19286e', GradientType=1);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#19286e', endColorstr='#00b8b1', GradientType=1);
	background-size: 220% 220%;
	animation: anBgGradient 15s linear infinite;
	-webkit-animation: anBgGradient 15s linear infinite;
	-moz-animation: anBgGradient 15s linear infinite;
	flex-direction: row; box-sizing: border-box; display: flex; place-content: center; align-items: center;
}

@keyframes anBgGradient {

	0%,
	100% {
		background-position: 0% 0%;
	}

	25% {
		background-position: 0% 100%;
	}

	50% {
		background-position: 100% 100%;
	}

	75% {
		background-position: 100% 0%;
	}
}

@-moz-keyframes anBgGradient {
	0% {
		background-position: 0% 100%;
	}

	100% {
		background-position: 100% 0;
	}
}

@-webkit-keyframes anBgGradient {
	0% {
		background-position: 0% 100%;
	}

	100% {
		background-position: 100% 0;
	}
}

/*----- Modal ------*/
.modal {
	width: 394px;
	margin: auto;
	position: absolute;
	top: initial;
	right: initial;
	bottom: initial;
	left: initial;
}
.modal-header, .modal-footer {
	padding: 16px;
	border: none;
}
.modal-title {
	font-size: 16px;
	font-weight: 600;
	color: #19286e;
}
.modal-body {
	padding: 48px 16px;
}

.modal-open {
	min-height: 100vh;
	flex-direction: row; box-sizing: border-box; display: flex; place-content: center; align-items: center;
}

.modal .btn-secondary {
	margin-top: 0;
  margin-left: 8px;
}