body.body-welcome{
	background-image: linear-gradient(69deg, rgba(200, 100, 150, 0.40), rgba(150, 100, 200, 0.76)), url("/assets/fachada-universidade-lusofona.jpg");
	background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  backdrop-filter: blur(10px);
	
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
}
body.body-welcome h1{
	margin: 0;
	margin-bottom: 10px;
}

.quote-welcome{
	text-align: center;
	margin-bottom: 10px;
	max-width: 500px;
}
.img-welcome{
	width: 100px;
	height: 100px;
	margin-bottom: 20px;
}
.input-welcome{
	width: 300px;
  height: 55px;
  padding: 10px 20px;
  border: none;
	margin: 0;
  border-radius: 0;
	background: #333;
	color: white;
}
.input-welcome:focus,
.input-welcome:hover{
	background: #555;
  outline: none;
}
.input-welcome::-webkit-input-placeholder{
	color: rgba(255, 255, 255, 0.7);
}
.button-welcome{
	width: 300px;
	height: 50px;
	
	margin: 0;
	margin-top: 10px;
	font-size: 15px;
	font-weight: 600;
	border: none;
	background-color: var(--accent);
	color: var(--text-on-accent);
	cursor: pointer;
}