body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}
#formContainer {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 300px;
	background: #f9f9f9;
	padding: 20px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
}
.center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    font-size: 2.5rem; /* Large font size for emphasis */
    font-weight: 900; /* Extra bold for sharpness */
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), /* Dark shadow for contrast */
                 -1px -1px 2px rgba(255, 255, 255, 0.5); /* Light shadow for sharp edges */
    letter-spacing: 1px; /* Slight spacing for sharp clarity */
}
.hidden {
	display: none;
}
.header {
    position: relative;
    width: 100%;
    background-color: #f4f4f4;
}

.header-image {
    width: 100%;            /* Full width */
    height: 100vh;          /* Full viewport height */
    object-fit: cover;      /* Ensures the image covers the area without distortion */
    margin: 0;              /* Removes any default margin */
    padding: 0;             /* Removes any default padding */
    display: block;         /* Ensures no inline spacing issues */
}

.buttons {
    position: absolute;
    top: 10px;
    right: 20px;
}

button {
    margin: 5px;
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #0056b3;
}

.form-container {
    margin: 20px auto;
    width: 300px;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.hidden {
    display: none;
}

input {
    display: block;
    margin: 10px 0;
    width: 90%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button[type=\"submit\"] {
    width: 100%;
    background-color: #28a745;
}

button[type=\"submit\"]:hover {
    background-color: #218838;
}
