body {
	min-height: 100vh;
	width: 100vw;
	margin: 0;
	background: linear-gradient(180deg, rgba(40, 107, 159, 1) 23%, rgba(50, 120, 162, 1) 51%, rgba(194, 226, 231, 1) 97%);
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}


#header {
	display: flex;
	align-items: center;
	height: 6vh;
	padding: 25px 30px 25px 30px;
	color: white;
	background-color: #225A86;
}

#logo {
	width: 60px;
	margin-right: 25px;
	cursor: pointer;
}

#container {
	height: 70vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.connexionCard {
	display: flex;
	align-items: center;
	justify-content: space-around;
	flex-direction: column;
	height: 400px;
	width: 300px;
	margin-left: 70px;
	margin-right: 70px;
	border-radius: 20px;
	background-color: white;
}

p {
	font-size: 24px;
}

input {
	width: 200px;
	height: 30px;
	border-radius: 30px;
	border: 1px #225A86 solid;
	padding-left: 25px;
	font-size: 14px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

button {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 25px;
	background-color: #1A4DE4;
	margin: 15px;
	padding: 15px;
	border-radius: 40px;
	font-size: 14px;
	color: white;
	border: none;
	cursor: pointer;
	font-weight: bold;
}

#homeButton {
	background-color: transparent !important;
	border: none;
}