/* ver como fa�o pra aplicar blur nos cards sem usar backdrop-filter */

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
}

html,
body {
	height: 100vh;
}

body {
	background: #0866ff;

	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;

	transition: 1s;
}

.login,
.criar-conta {
	width: 403px;
	border-radius: 20px;
	border: 1.5px solid black;
	background: #dee1e6;
	padding: 61px 36px;

	display: flex;
	flex-direction: column;
	justify-content: space-between;

	backdrop-filter: blur(5px);
	transition: 0.5s;
}
.ilustracao {
	margin: auto;
	height: 50px;
	width: 50px;
}

.container-login,
.container-criar-conta {
	padding: 0px 20px;
	margin-bottom: 10px;

	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
}

h1 {
	font-size: 24px;
	padding: 15px;
}
label {
	font-size: 12px;
	font-weight: bold;
    color: #000;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

input {
	font-size: 14px;
	padding: 10px 0px;
	background: transparent;
	border: none;
	border-bottom: 1.5px solid red;
	outline: none;
	transition: 0.5s;
}
.botao {
	font-size: 14px;
	font-weight: bold;
	background: white;
	border: 1.5px solid black;
	border-radius: 10px;
    padding: 8px;

	transition: background 0.5s, transform 0.2s;
}
input[type="button"]:active {
	background: darkgray;
	box-shadow: none;
	transform: translatey(3px);
}

.links,
.links a {
	font-size: 12px;
	color: black;
	text-align: center;
	text-decoration: none;
}
.links a:hover {
	text-decoration: underline;
}
.links span {
	margin: 0px 5px;
}
