﻿html 
{
	height: 100%;
}

body {
	height: 100%;
	min-height: 100%;
	background: rgb(40,56,151);
	background: linear-gradient(160deg, rgba(40,56,151,1) 0%, rgba(104,37,123,0.75) 34%, rgba(131,29,112,0.75) 58%, rgba(229,0,69,1) 100%);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.container {
	width: 70%;
	min-width: 1100px;
	height: 500px;
	max-height: 100%;
	overflow: hidden;
	margin: auto;
	padding: 0;
	background-color: white;
	border-radius: 5px;
	box-shadow: 0 0 15px white;
}

.information-block {
	display: inline-block;
	vertical-align: top;
	width: 40%;
	height: 100%;
	padding-left: 10px;
	padding-right: 10px;
	background-image: url("/assets/blue_swoosh.jpg");
	background-repeat: round;
	color: white;
	text-align: center;
}

.action-block {
	display: inline-block;
	vertical-align: top;
	height: 100%;
	padding-left: 40px;
}

.information-title {
	margin-top: 50px;
	margin-bottom: 30px;
	font-size: 1.3rem;
}

.information-text {
	font-size: 1rem;
}

.sodexo-logo {
	margin-top: 30px;
	height: 80px;
	width: 180px;
	background-image: url("/assets/SodexoLive_Logo.svg");
	background-size: cover;
}

.action-title {
	font-size: 1.3rem;
	font-weight: 400;
	margin-top: 20px;
}

.action-block form {
	margin-top: 20px;
	width: 400px;
}

.action-block form input::placeholder {
	font-size: 0.8rem;
}

.btn.btn-sodexo-blue {
	color: white;
	background-color: #012D98;
}

