:root{
	--form-ligt: #ffffffcf;
	--form-dark: #000000cf;
}

body{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
    background: linear-gradient(90deg, #E40428 48%, #143A84 52%);
}

.content-wrapper{
    height: 100vh;
    min-height: 100vh;
    width: 100vw;
    max-width: 1200px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 5rem;
	justify-content: center;
	align-items: center;
    justify-self: center;
}


form{
	padding: 20px;
	background-color: light-dark(var(--form-ligt), var(--form-dark));
	border-radius: 10px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 0.02rem;
}


form>button{
	font-size: 1rem;
	padding: 0.5rem;
}
form>input{
	font-size: 0.9rem;
	padding: 0.45rem;
}
