/* General Form Container */
.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    background-color: #f5f5f5; /* Light gray background */
}

/* General Form Card */
.form-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px; /* Limit the width of the form */
    margin-top: 50px;
}

/* Form Header */
.form-card h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-green);
}

/* Form Layout */
.form-card form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Form Group */
.form-card form .form-group {
    margin-bottom: 15px;
}

.form-card form .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-card form .form-group input,
.form-card form .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Checkbox Alignment */
.form-card form .form-check {
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 10px; /* Add spacing between the checkbox and the text */
}

.form-card form .form-check input {
    margin: 0; /* Remove extra margin around the checkbox */
    width: auto; /* Ensure the checkbox has its default size */
}

.form-card form .form-check label {
    margin: 0; /* Remove extra margin around the label */
    font-weight: normal; /* Optional: Make the label text less bold */
    color: #333;
}

/* Submit Button */
.form-card form button {
    width: 100%;
    padding: 10px;
    background-color: var(--dark-green);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    cursor: pointer;
}

.form-card form button:hover {
    background-color: var(--dark-orange);
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .form-container {
        padding: 10px;
    }

    .form-card {
        padding: 20px;
    }
}