/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url('soil.png'); /* Set your background image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: Arial, sans-serif;
}

.container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px; /* Adjust the form box width */
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    padding-bottom: 3rem; /* Added extra bottom padding */
    /* margin-bottom: 0vh; Added margin at the bottom for spacing */
}






/* Form Styling */
.form-content-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.form-content-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.form-content-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    border-color: #46A049;
    outline: none;
}

button {
    width: 100%;
    padding: 1rem;
    background-color: #46A049;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #3a853f;
}

a {
    color: #46A049;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

a:hover {
    color: #3a853f;
}

/* Website Name Styling */
.website-name {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

/* footer {
    text-align: center;
    margin-top: 2rem;
    color: #555;
} */
