@font-face {
	font-family: Poppins;
	src: url('assets/fonts/Poppins-Regular.ttf');
}

@font-face {
	font-family: PoppinsBold;
	src: url('assets/fonts/Poppins-Bold.ttf');
}

body {
	margin: 0;
	padding: 0;
	font-family: "PoppinsBold";
	background-color: #263c91;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.container {
	background-color: white;
	border-radius: 20px;
	margin: 20px;
	padding: 20px;
	max-width: 420px;
	width: 100%;
	text-align: center;
	display: none;
}

.logo {
	margin-top: 10px;
	margin-bottom: 20px;
}

.title {
	font-size: 40px;
  	line-height: 40px;
	font-weight: bold;
	color: #263c91;
	margin-bottom: 20px;
}

.image {
	width: 100%;
	max-width: 300px;
	margin: 0 auto 20px;
	display: block;
}

.button {
	background-color: white;
	border: 2px solid #263c91;
	border-radius: 25px;
	padding: 12px 20px;
	color: #263c91;
	font-weight: bold;
	font-size: 16px;
	text-decoration: none;
	display: inline-block;
	margin-top: 10px;
}

.button:hover {
	background-color: #263c91;
	color: white;
}

.lang_es, .lang_eu {
	display: none;
}