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