*{
	padding: 0;
	margin: 0;
}
body{
    font-family: sans-serif;
}
img{
	max-width: 100%;
}
.contentarea{
	background-color: #f7f7f7;
	background-image: url(../img/bg.jpg);
	background-size: cover;
	background-position: center;
	height: 100vh;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
}
.maincont{
	width: 100%;
    max-width: 400px;
/*    background-color: #fff;*/
    padding: 20px;
    border-radius: 2rem;
/*    box-shadow: 8px 8px 20px rgb(0 0 0 / 20%);*/
}
.logo{
	    width: 300px;
    margin: auto;
    display: flex;
    justify-content: center;
}
.content h1{
	text-align: center;
    font-size: 1.5rem;
    color: #13ace0;
}
.content h3{
    text-align: center;
    opacity: .3;
    margin-top: 10px;
    letter-spacing: 6px;
}
.text-center{
	text-align: center;
}
.text-center a{
	text-decoration: none;
	color: #0a6009;
}
@media(max-width: 576px){
	.maincont {
    width: 100%;
    max-width: 300px;
/*    background-color: #fff;*/
    padding: 20px;
    border-radius: 2rem;
    /*box-shadow: 8px 8px 20px rgb(0 0 0 / 20%);*/
}
}