/* CSS Document */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    position: relative; /* Set the body as relative positioning */
}

.fullscreen-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Ensure the image stays in the background */
}

.fullscreen-image img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}

.form-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1; /* Adjust the alpha value as needed */
    padding: 20px;
    border-radius: 5px;
}
.form-container form {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-container input[type="text"] {
    width: 200px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.form-container input[type="submit"] {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.form-container input[type="submit"]:hover {
    background-color: #45a049;
}

.form_instruct {
    font-family: 'Arial', 'Sans-serif'; /* Change 'Sans-serif' to your desired sans-serif font */
    color: white;
    font-weight: bold;
    background-color: #4CAF50;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* ---------------------------------------------------------------------------------*/
.goodbye-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 1; /* Adjust the alpha value as needed */
	padding: 20px;
	border-radius: 5px;
	font-family: 'Arial', 'Sans-serif'; /* Change 'Sans-serif' to your desired sans-serif font */
	background-color: #00CC66;
	border-color: #000000;
	border: 3px solid #ccc;
    border-radius: 5px;

}

.goodbye_text {
	color: #FFFFFF;
	font-weight:bolder
	
}

.form-container input[type="submit"] {
    padding: 10px 20px;
    background-color: #27953e;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
/* New styles for the image container */
.image-container {
    text-align: center; /* Center align the images */
	margin-top: 20px; /* Distance from the top */
	margin-bottom: 20px; /* Distance from the top */
}

.image-container img {
    margin: 0 15px; /* Distance between the images */
}
