@import url("https://fonts.googleapis.com/css2?family=Sen:wght@400;700;800&display=swap");

html,
body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	font-size: 16px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: "Sen", sans-serif;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

label {
	color: #28466d;
	font-weight: bold;
	width: 100%;
	display: inline-block;
	margin-top: 40px;
}

input {
	width: 100%;
	display: inline-block;
	background-color: transparent;
	color: #849fc1;
	border: 0;
	border-bottom: 1px solid #849fc1;
	font-size: 20px;
	line-height: 40px;
}

h1.title {
	position: absolute;
	top: 50px;
	left: 50px;
	font-size: 24px;
}

h2.form-title {
	font-size: 30px;
	font-weight: 800;
	text-align: center;
}


@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.right-asset {
	width: 480px;
	height: 100%;
	/* background: linear-gradient(-45deg, #28466d 20%, #849fc1 100%); */
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400vw 400vh;
	animation: gradient 15s ease infinite;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	padding: 10px;
}

.copyright {
	font-size: 10px;
	color: #849fc1;
}

form {
	margin: auto;
	max-width: 90%;
	width: 400px;
	display: flex;
	flex-direction: column;
}

button {
	line-height: 60px;
	/* background-color: #28466d; */
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400vw 400vh;
	animation: gradient 15s ease infinite;
	color: white;
	border-radius: 20px;
	border: 0;
	font-size: 20px;
	font-weight: bold;
	padding-left: 40px;
	padding-right: 40px;
	margin-top: 40px;
}

.error {
	background-color: #ffdfdf;
	color: #bb3434;
	text-align: center;
	margin: 20px;
	padding: 20px;
	border-radius: 20px;
}

.warning {
	background-color: #ffefdf;
	color: #bb6534;
	text-align: center;
	margin: 20px;
	padding: 20px;
	border-radius: 20px;
}

.warning .title{
	font-weight: bold;
	display: inline-block;
	width: 100%;
}

@media only screen and (max-width: 768px) {
	body {
		flex-direction: column;
	}

	.right-asset {
		width: 100%;
		max-height: 20%;
	}

	h1.title {
		position: relative;
		margin-top: 50px;
		margin-bottom: 25px;
		top: auto;
		left: auto;
	}
}
