.alert {
	margin-top: 30px;
	margin-bottom: 30px;
	margin-left: auto;
	margin-right: auto;
	padding: 15px 30px;
	display: table;
	text-align: justify;
	font-size: 20px;
	border: none;
	border-radius: 0;
	background-image: none;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
	width: 85%;
}

.alert-content {
	display: table-cell;
	vertical-align: middle;
}

.alert-success {
	background-color: rgba(red(007064), green(007064), blue(007064), .05);
	color: #007064;
}

.alert-danger {
	background-color: rgba(red(#b54d00), green(#b54d00), blue(#b54d00), .05);
	color: #b54d00;
}

.alert-warning {
	background-color: rgba(red(#F0B600), green(#F0B600), blue(#F0B600), .05);
	color: #c99800;
}

@media ( min-width : 576px) {
	.alert-success:before, .alert-danger:before, .alert-warning:before {
		display: table-cell;
		font-family: "Font Awesome 5 Free";
		font-weight: 900;
		vertical-align: middle;
		font-size: 40px;
		padding-right: 30px;
	}
	.alert-success:before {
		content: "\f058";
	}
	.alert-danger:before {
		content: "\f06a";
	}
	.alert-warning:before {
		content: "\f071";
	}
}

.alert a {
	vertical-align: middle;
}

.alert-warning img {
	width: 40px;
}

.alert strong, .alert span {
	vertical-align: middle;
}

.btn-parent-div {
	text-align: center;
	margin: 0 auto;
	margin-bottom: 30px;
}

.btn.btn-success {
	border: none;
	border-radius: 0;
	background-color: #417A74;
	background-image: none;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.btn.btn-success:hover {
	background-color: #3BA398;
}

.logo-img {
	width: 80%;
	max-width: 700px;
	margin-top: 30px;
}

.row img {
	width: 100px;
	margin-top: 30px;
}

.loader {
	border: 16px solid #f3f3f3;
	border-top: 16px solid #3498db;
	border-radius: 50%;
	width: 120px;
	height: 120px;
	animation: spin 1s linear infinite;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: #f1f1f1;
	text-align: center;
}

