.login{
	background-color: var(--white-2);
	width: 100%;
	min-height: 100vh;
}

.login a{
	text-align: center;
}

.login .boxed {
	max-width: 800px;
}

.login .wrapper{
	background-color: var(--white);
	padding: 80px;
	box-sizing: border-box;
	position: relative;
}

.login .header{
	position: relative;
	top: -80px;
	left: -80px;
	background-color: var(--blue);
	padding: 40px;
	width: calc(100% + 160px);
	box-sizing: border-box;
	color: var(--white);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.login .header img{
	width: 100%;
	max-width: 300px;
}

.login .header h1{
	color: var(--white);
	margin: 0;
}	

.login	form{
	display: grid;
	gap: 20px;
	column-gap: 40px;
}

.login	form label{
	width: 100%;
	display: flex;
	position: relative;
	white-space: nowrap;
}

.login	form label input{
	display: inline-flex;
	margin-left: 20px;
	margin-right: 0px;
	width: 100%;
	flex-shrink: 1;
	position: relative;
	top: -4px;
	border: solid 1.5px var(--blue);
	background-color: var(--white);
	border-radius: 3px;
}

.login	form label input:focus{
	outline: none;
}

.login .message{
	width: 100%;
	padding: 15px 40px;
	background-color: #913030;
}

.login .message p{
	margin: 0px;
	color: var(--white);
}