* {
	margin: 0;
	padding: 0;
}

*, *:after, *:before {
	box-sizing: border-box;
}

*:focus {
	outline-color: #1f58f6;
}

html {
	font-size: 16px;
}

/* Styles for the banner */
.top-banner {
    width: 100%;
    background-color: red;
    color: white;
    text-align: center;
    padding: 5px 0;
    font-weight: bold;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
  }  

body {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #003682;
	background-color: #f8fbfb;
    background-image: url('images/background.png');
    background-size: cover;
	font-family: system-ui,-apple-system,BlinkMacSystemFont,Inter,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizelegibility;
	overflow-x: hidden;
	line-height: 1.4;
	height: 100vh;
	width: 100vw;
}

main {
	padding: 2rem;
	max-width: 600px;
	border-radius: 4px;
	background-color: #fff;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

blockquote {
	display: block;
	font-size: 0.85rem;
	padding-left: 0.75rem;
	border-left: 4px solid #2d1ff6;
	margin-bottom: 1rem;
	margin-top: 0.5rem;
}

blockquote p {
	margin-bottom: 0.5rem;
}

.input {
  display: block;
  margin-bottom: 1rem;
	line-height: 1.6;
}

.input label,
.checklist > label {
	display: block;
	font-weight: bold;
}

.input input,
.input select {
	width: 100%;
  display: block;
	background: #fff;
	border-radius: 2px;
	border: 1px solid #000;
	padding: 0.375rem 0.5rem;
	min-height: 2rem;
	height: 2rem;
}

.checklist li {
	list-style: none;
	padding-left: 0.5rem;
	margin-bottom: 0.25rem;
}

.checklist input {
	margin-right: 0.25rem;
}

button {
	width: 100%;
	display: block;
	cursor: pointer;
	margin-top: 1.5rem;
	background-color: #2d1ff6;
	border-radius: 2px;
	font-weight: bold;
	padding: 0.75rem;
	outline: none;
	border: none;
	color: #fff;
}

button:hover {
	background-color: #004cd8;
}

form {
	max-width: 300px;
	margin: 20px auto;
}

.disclaimer {
	clear: both; /* Clears floats */
	background-color: #f7f7f7;
	color: #333;
	text-align: center;
	padding: 20px 0;
	font-size: 0.85em;
	border-top: 1px solid #e5e5e5;
	margin-top: 50px;
  }
  
  .container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	overflow: hidden; /* Ensures the container encompasses floated child elements */
  }
  
  