:root{
	--main-color: #093e38;	
	--second-color:#024023;
	--third-color:  #024023;
}

*{
	box-sizing: border-box;
	margin: 0;
}

html{
	min-height: 100vh;
	width: 100vw;
}
body{
	font-family: 'Open Sans', sans-serif;
}
.mit-protected-page{
	background-color: var(--main-color);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	min-height: 100vh;
	width: 100%;
	padding: 30px 30px;
}
.mit-protected-page section:not(:last-of-type){
	margin-bottom: 30px;
}
.mit-protected-page .description {
	text-align: center;
}
.mit-protected-page .description h1{
	font-size: 35px;
	margin-bottom: 15px;
	color: var(--main-color);
	text-transform: uppercase;
}
.mit-protected-page .description p{
	color: #505050;
	font-size: 25px;
	max-width: 800px;
	margin: 0 auto;
}
.mit-protected-page .description p:not(:last-of-type){
	margin-bottom: 15px;
}
.mit-protected-page .description p span{
	font-weight: bold;
	color: var(--main-color);
}

.mit-protected-extra .row{
	margin-bottom: 30px;
}
.mpp-form-container{

	background-color: white;
	border-radius: 15px;
	padding: 30px;
	box-shadow: 0 5px 15px  rgba(67, 67, 37,0.1);
	text-align: center;
	max-width: 400px;		
	width: 100vw;
}
.mpp-form-container .row h1{
	color: var(--main-color);
	font-weight: bold;
	margin-bottom: 10px;
	font-size: 20px;
}
.mpp-form-container .row h3{
	color: var(--third-color);
	text-transform: uppercase;
	font-weight: bold;
}
.mpp-form-container .row:not(:last-of-type){
	margin-bottom: 30px;
}

.mpp-form-container .form-label{
	width: 100%;	
	font-size: 16px;
	color: var(--third-color);
	margin-bottom: 10px;
	display: block;
}
.mpp-form-container .input_holder .form-control{
	border: 2px solid var(--main-color);
	border-radius: 15px;
	font-size: 16px;
	width: 100%;
	text-align: center;
	padding: 5px 15px;
	line-height: 1!important;
}
.mpp-form-container .input_holder .form-control:active{
	outline: none!important;
	border-color: var(--third-color);
}
.mpp-form-container .input_holder .form-control:focus{
	outline: none!important;
	border-color: var(--third-color);
}
.mpp-form-container .error-message{
	color: var(--main-color);
	font-size: 14px; 
	font-weight: bold;
	margin-bottom: 10px;
}
.mpp-form-container .submit-button{
	background-color: var(--main-color);	
	color: white;
	font-size: 18px;
	border-radius: 30px;
	padding: 10px 25px;
	outline: none!important;
	border: none!important;
	box-shadow: 0 5px 15px  rgba(0, 0, 0,0.2);
	text-transform: uppercase;
	transform: translateY(0px);
	transition: 123ms ease;
}
.mpp-form-container .submit-button:hover{
	transform: translateY(-2px);
	transition: 234ms ease;
	box-shadow: 0 8px 15px  rgba(0, 0, 0,0.3);
}
.mpp-form-container .submit-button:active{
	transform: translateY(-4px);
	transition: 123ms ease;
	box-shadow: 0 10px 15px  rgba(0, 0, 0,0.4);
}
.use-info p{
	color: rgba(0,0,0,0.6);
	font-weight: bold;
}
.use-info p span{
	color: rgba(0,0,0,1);

}
.mit-protected-extra .logo{
	height: 150px;
	width: auto;
}
.mit-protected-page .logo-container{	
	padding-bottom: 30px;	
	position: relative;
}
.mit-protected-page .logo-container:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	border-radius: 15px;
	height: 4px;
	background-color: var(--main-color);
	opacity: 0.2;
}
.mpp-form-container .message{
	font-size: 14px;
	font-weight: bold;
	margin-top: 10px;
	color: #a53030;
	opacity: 0;
	height: 0;
	transition: 0.3s ease;		
}
.mpp-form-container .message.reveal{
	margin-bottom: 5px;
}
.mpp-form-container .message.reveal{
	opacity: 1;
	height: auto;
	transition: 0.3s ease;		
}
