* {
	box-sizing: border-box;
}
body {
	font-family: 'Century Gothic', Century Gothic;
	font-size: 20px;
	color: rgba(3, 4, 56, 0.507);
}
.form-box {
	background-color: rgba(26, 63, 165, 0.199);
	margin: auto auto;
	padding: 40px;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(2, 15, 70, 0.726);
	position:absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 86%;
	height:700px;
}


.form-box:before {
	
	width:100%;
	height: auto;
	background-size: cover;
	content: "";
	position:absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
	display: block;
	filter: blur(2px);
}
.form-box .header-text {
	font-size: 32px;
	font-weight: 600;
	padding-bottom: 30px;
	text-align: center;
}
.form-box input {
	margin: 10px 0px;
	border: none;
	padding: 10px;
	border-radius: 1px;
	width:100%;
	font-size: 16px;
	font-family: 'Century Gothic', Century Gothic;

}
.form-box input[type=checkbox] {
	display: none;
}
.form-box label {
	position: center;
	margin-left: 5px;
	margin-right: 10px;
	top: 5px;
	display: inline-block;
	width: 20px;
	height: 20px;
	cursor: pointer;
}
.form-box label:before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 5px;
	position: absolute;
	left: 0;
	bottom: 1px;
	background-color: #ddd;
}
.form-box input[type=checkbox]:checked+label:before {
	content: "\2713";
	font-size: 20px;
	color: #000;
	text-align: center;
	line-height: 20px;
	width: 100%;

}
.form-box span {
	font-size: 14px;

}
span a {
	color: rgba(18, 43, 188, 0.74);
}
h2{
	color: rgb(0, 0, 0);
	text-align: center; /* Center the h3 */
	
}
h5{
	color: rgb(0, 0, 0);
	text-align: center; /* Center the h3 */
	
}

.container {
    width: 80%;
    margin: 50px auto;
    text-align: center;
}

h1 {
    color: #333;
}

.search-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.input-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

input[type="text"],
select {
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

input[type="text"] {
    width: 300px;
    margin-right: 10px;
}

select {
    margin-right: 10px;
}

button {
    padding: 10px 20px;
    margin-left: 10px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

.logo {
    max-width: 100%;
    max-height: 20%;
    margin-bottom: 10px;
}
