body {
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	font-family: 'Jost', sans-serif;
	background: rgb(47, 109, 111);
	flex-direction: column;
}


.main {
	width: 350px;
	height: 570px;
	overflow: hidden;
	background: url("https://rovcard.app/assets/images/back.webp") no-repeat center/ cover;
	border-radius: 10px;
	box-shadow: 5px 20px 50px #000;
	margin-top: 60px;
}

#chk {
	display: none;
}

.signup {
	position: relative;
	margin-top: 0;
	width: 100%;
	height: 100%;
}

.card {
	background-color: #ffffff00 !important; 
} 
.card-body{
	
	position: relative;
}
.label {
	color: #2f6d6f;
	font-size: 2.3em;
	justify-content: center;
	align-items: center;
	display: flex !important;
	margin: 10px;
	font-weight: bold;
	cursor: pointer;
	transition: .5s ease-in-out;
}

input {
	width: 60%;
	height: 20px;
	border: 2px solid #2f6d6f;
	color: #2f6d6f;
	justify-content: center;
	display: flex;
	margin: 20px auto;
	padding: 10px;
	outline: none;
	border-radius: 10px;
}

button {
	width: 60%;
	height: 40px;
	margin: 10px auto;
	justify-content: center;
	display: block;
	color: #2f6d6f;
	background: #fff;
	font-size: 1em;
	font-weight: bold;
	margin-top: 20px;
	outline: none;
	border: none;
	border-radius: 5px;
	transition: .2s ease-in;
	cursor: pointer;
} 

button:hover {
	background: #CCC;
}

.login {
	height: 600px;
	color: #2f6d6f;
	background: #2f6d6f;
	border-radius: 55% / 5%;
	transform: translateY(-55px);
	transition: .8s ease-in-out;
	z-index: 99999;
	position: relative;
}

.login .label {
	color: #eee;
	margin-top: 0px;
	transform: scale(.6);
	display: flex;
	justify-content: center;
}

#chk:checked~.login {
	transform: translateY(-450px);
}

#chk:checked~.login .label {
	transform: scale(1);
}

#chk:checked~.signup .label {
	transform: scale(.6);
}