
* {
	box-sizing: border-box;

}

body {
	background: linear-gradient(135deg, #FFDEE9, #B5FFFC);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	font-family: 'Montserrat', sans-serif;
	height: 100vh;
	padding: 15%;
}

span {
	font-size: 1rem;
	color: red;
}

a {
	color: #333;
	font-size: 14px;
	text-decoration: none;
	margin: 15px 0;
}
button {
	border-radius: 20px;
	border: 1px solid #ab4c3c;
	background-color: #ab4c3c;
	color: #FFFFFF;
	font-size: 12px;
	font-weight: bold;
	padding: 12px 45px;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-top: 5%;
	transition: 0.5s;
	margin-bottom: 10%;
}

button:focus {
	outline: none;
}

button.ghost {
	background-color: transparent;
	border-color: #FFFFFF;
}

button:hover{
	background-color: #FFDEE9;
	color: #ab4c3c;
	transition: 0.5s;
}

input {
	background-color: #eee;
	border: none;
	margin: 5% 0 5% 0;
	/* margin-top: 5%; */
	width: 100%;
    border-radius: 15px;
    padding: 7%;
	box-shadow: 0 0px 5px rgba(0,0,0,0.25), 
	0 10px 10px rgba(0,0,0,0.22);
}

.container {
	border-radius: 10px;
  	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 
			0 10px 10px rgba(0,0,0,0.22);
	position: absolute;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.237);
	backdrop-filter: blur(10px);
	display: flex;
	flex-direction: row;
	padding: 2%;
} 

.left-side, .right-side{
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 5%;
	width: 50%;
}

.right-side{
	background-color: #eafffa;
    border-radius: 5%;
    border: 1px solid #00000033;
	/* box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.429); */
}

.left-side img{
	width: 60%;
	justify-content: center;
	align-items: center;
	margin-bottom: 2%;
}

.right-side h1{
	margin: 0%;
	margin-bottom: 2%;
}



