@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	height: 100%;
	font-family: "Open Sans", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	display: flex;
	justify-content: center;
	align-items: center;
}

.box-title {
	color: #28A745;
	width: 100%;
	font-size: 2.5rem;
	text-transform: uppercase;
	text-align: center;
}

.container {
	width: 50%;
	margin-top: 10%;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	-ms-flex-direction: column;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-color: #EFEFEF;
	background-clip: border-box;
	border: 1px solid rgba(0, 0, 0, .125);
	border-radius: 0.25rem;
}

.row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}

.m-0 {
	margin: 0 !important;
}

.mr-0 {
	margin-right: 0 !important;
}

.mb-1 {
	margin-bottom: 0.25rem !important;
}

.mt-4 {
	margin-top: 2rem !important;
}

.form-content {
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 1.25rem;
}

.col-md-12, .col-md-8, .col-md-6, .col-md-4, .col-md-3 {
	position: relative;
	width: 100%;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
}


label {
	display: inline-block;
	margin-bottom: .5rem;
	cursor: default;
}

[role=button], a, area, button, input, label, select, summary, textarea {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

input {
	box-shadow: none;
	outline: 0 !important;
}

.input-group {
	margin-bottom: 1rem;
}

.input-control {
	display: block;
	width: 100%;
	padding: 0.5rem 0.75rem;
	font-size: 1rem;
	line-height: 1.25;
	color: #495057;
	background-color: #FFF;
	background-image: none;
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 0.25rem;
	transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.input-control:focus {
	color: #495057;
	background-color: #FFF;
	border-color: #80BDFF;
	outline: none;
}

.input-control::placeholder {
	color: #868e96;
	opacity: 1;
}

.btn {
	display: inline-block;
	font-weight: normal;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 1px solid transparent;
	padding: 0.5rem 0.75rem;
	font-size: 1rem;
	line-height: 1.25;
	border-radius: 0.25rem;
	transition: all 0.15s ease-in-out;
	cursor: pointer;
}

.btn:focus, .btn:hover {
	text-decoration: none;
}

.btn:focus, .btn.focus {
	outline: 0;
	box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

.btn-success {
	color: #FFF;
	background-color: #28A745;
	border-color: #28A745;
}

.btn-success:hover {
	color: #FFF;
	background-color: #218838;
	border-color: #1E7E34;
}

.btn-success:focus, .btn-success.focus {
	box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.5);
}

.btn-success.disabled, .btn-success:disabled {
	background-color: #28A745;
	border-color: #28A745;
}

.btn-success:active, .btn-success.active,
.show > .btn-success.dropdown-toggle {
	background-color: #218838;
	background-image: none;
	border-color: #1E7E34;
}

@media (min-width: 768px) {
	.col-md-3 {
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}

	.col-md-4 {
    	-ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
    	max-width: 33.333333%;
	}

	.col-md-6 {
    	-ms-flex: 0 0 50%;
        flex: 0 0 50%;
    	max-width: 50%;
	}

	.col-md-8 {
    	-ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
    	max-width: 66.666667%;
	}

	.col-md-12 {
    	-ms-flex: 0 0 100%;
        flex: 0 0 100%;
    	max-width: 100%;
	}
}

@media (max-width: 950px) {
	.container {
		width: auto;
	}
}
