@charset "utf-8";
/* CSS Document */

/* HEADER */

header{
	width: 100vw;
	height: 100vh;	
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(180deg, rgba(1,128,61,0.5046393557422969) 0%, rgba(1,127,128,0.5046393557422969) 100%);
}

header img{
	width: 10%;
	max-width: 100px;
	position: absolute;
	left: 10px;
	top: 10px;
}

/* FORM */

.main{
	width: 350px;
	height: 490px;
	background: linear-gradient(180deg, rgba(1,128,61,1) 0%, rgba(1,127,128,1) 70%);
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 5px 20px 50px #000;
	z-index: 2;
	top: 120px;
	position: absolute;
}

#chk{
	display: none;
}
.signup{
	position: relative;
	width:100%;
	height: 100%;
}
label{
	color: #fff;
	font-size: 2em;
	justify-content: center;
	display: flex;
	margin: 60px;
	font-weight: bold;
	cursor: pointer;
	transition: .5s ease-in-out;
}
input{
	width: 60%;
	height: 20px;
	background: #e0dede;
	justify-content: center;
	display: flex;
	margin: 20px auto;
	padding: 10px;
	border: none;
	outline: none;
	border-radius: 5px;
}
.main button{
	width: 60%;
	height: 40px;
	margin: 10px auto;
	justify-content: center;
	display: block;
	font-size: 1em;
	font-weight: bold;
	margin-top: 20px;
	outline: none;
	border: none;
	border-radius: 5px;
	transition: .2s ease-in;
	cursor: pointer;
	margin-top: 50px;
}
.login{
	height: 460px;
	background: #eee;
	border-radius: 60% / 10%;
	transform: translateY(-220px);
	transition: .8s ease-in-out;
}
.login label{
	color: var(--base-color);
	transform: scale(.6);
}
#chk:checked ~ .login{
	transform: translateY(-500px);
}
#chk:checked ~ .login label{
	transform: scale(1);	
}
#chk:checked ~ .signup label{
	transform: scale(.6);
}

/* COLOR SWITCH */

.color-switch{
	position: absolute;
	border-radius: 10%;
	top: 17px;
	right: 85px;
	display: flex;
	width: 60px;
	height: 25px;
	align-items: center;
	justify-content: space-evenly;
	background-color: rgba(236, 236, 236, 0.628);
}

.color-switch .color{
	width: 15px;
	height: 15px;
	border-radius: 50%;
	border: 1px solid var(--text-color);
	cursor: pointer;
}

.green-blue{
	background: linear-gradient(180deg, rgba(1,128,61,0.5046393557422969) 0%, rgba(1,127,128,0.5046393557422969) 100%);
}

.pink-yellow{
	background: linear-gradient(180deg, rgba(255,0,241,1) 15%, rgba(238,238,18,1) 100%);
}

/* COOKIE */

.cookie {
	width: 100%;
	height: 50px;
	position: fixed;
	bottom: 0;
	left: 0;
	background-color: rgba(206, 206, 206, 0.9);
	font-size: 12pt;
	z-index: 999;
}

.cookie p {
	text-align: center;
	display: flex;
	align-items: normal;
	justify-content: center;
}

.cookie button {
	width: 50px;
	height: 30px;
	font-size: 0.8em;
	font-weight: bold;
	outline: none;
	border: none;
	border-radius: 5px;
	transition: .2s ease-in;
	cursor: pointer;
	background-color: var(--base-color);
	color: var(--background-color);
	margin: 0 20px;
	transform: translateY(-5px);
}

.cookie a {
	color: var(--base-color);
	margin-left: 7px;
}