body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #f2f9f2 0%, #a9dba9 100%);
    color: #333;
}

form {
    max-width: 800px;
    margin: 40px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);

}

input, select, textarea {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.submit-button {
    background-color: #4CAF50;
    color: white;
    font-size: 16px;
    padding: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    width: 100%;
}

.submit-button:hover {
    background-color: #45a049;
}

.description {
    font-size: 14px;
    color: #555;
    background-color: #e8f5e9;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

h1 {
    text-align: center;
    color: #2c662d;
}

#loading {
    text-align: center;
    display: none;
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}


.index-container{
    height: 100%;
    margin: 0;
    overflow: hidden; /* Prevent scrolling */
    font-family: Arial, sans-serif;
    background: #f0f0f0;
    color: white;
    text-align: center;
}

.index-background {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw; /* Full width of the viewport */
    height: 100vh; /* Full height of the viewport */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.index-zoom-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: index-zoomInContinuous 30s ease-in-out forwards;
    transform-origin: top center; /* Sets the origin of the transform to the top center */
}

.index-logo {
    width: 100%; /* Ensures the logo container is full width */
    display: flex;
    justify-content: center; /* Centers logo horizontally */
    position: relative; /* Adjust if needed to reposition */
    z-index: 10; /* Ensures it's above the background image */
}

.index-logo img {
    width: 120px; /* Adjust size as needed */
    height: 120px; /* Ensure the logo is circular */
    border-radius: 50%; /* Makes the logo circular */
    object-fit: cover; /* Ensures the image covers the defined area without distortion */
}

.index-about {
    z-index: 10; /* Make sure text appears above the background image */
    position: relative;
    font-size: 18px;
    padding: 0 20px;
}

.index-submit-button {
    display: inline-block;
    z-index: 10;
    margin-top: 20px;
    font-size: 18px;
    padding: 10px 20px;
    background-color: #008000;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.index-submit-button:hover {
    background-color: #004d00;
}

@keyframes index-zoomInContinuous {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.5);
    }
}


footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

section {
    margin: 20px auto;
    max-width: 800px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
