body{
	height: 100%;
	background-size: cover;
	overflow: hidden;
}
main{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.wrapper{
	width: 380px;
	background: #fff;
	border-radius: var(--card-border-radius);
	box-shadow: 0px 15px 20px rgba(0,0,0,0.1);
	overflow: hidden;
}
.wrapper::before{
	content: "";
    position: absolute;
    background: url(../src/wr_desc_img.png) no-repeat;
    width: 500px;
    height: 500px;
    z-index: -1;
    transform: translate(-279px, 190px);
    opacity: 0.2;
}
.wrapper .title{
	font-size: 35px;
	font-weight: bold;
	text-align: center;
	line-height: 100px;
	color: #fff;
	background: var(--main-color);
}
.wrapper form{
	padding: 10px 30px 50px 30px;
}
.wrapper form a{
	text-decoration: none;
	font-weight: bold;
}
.wrapper form .pass-link,
.wrapper form .sign-up{
	margin-top: 10px;
	color: #4158d0;
	text-align: center;
}


/*

MOBILE

*/

@media screen and (max-width: 768px){
	main{
		width: 100%;
		padding: var(--card-padding);
	}
	.wrapper{
		background: transparent;
		border-radius: 0px;
		box-shadow: none;
		width: auto;
	}
	.wrapper form{
		padding: 0px;
	}
	.wrapper::before{
    	transform: translate(-120px, 68px);
    	width: 406px;
    	height: 350px;
	}
	.wrapper .title{
		border-radius: none;
		background: transparent;
		color: #4158d0;
	}
}