
.header-background-image {

    height: auto; /* Adjust based on how much height you want */
    min-height: 75vh;
}

.header-content {
    margin: 4rem 1rem;
}

.form-container {
    width: 400px; /* Adjust the width to be as needed */
    margin: 2rem auto; /* Center the form horizontally */
    z-index: 1; /* Ensure it appears above the overlay */


    h2 {
        font-weight: bold;
    }

    p {
        margin-bottom: 1.5rem;
    }

    input, textarea {
        border-radius: 0.25rem;
        max-width: none !important;
    }

    .errorlist {
        color: var(--validation-error);
    }

    input:focus, textarea:focus {
        border-color: var(--logo-yellow); /* Optional: change the border color on focus */
        box-shadow: 0 0 5px 3px var(--logo-yellow); /* Yellow shadow */
        outline: none; /* Remove default browser outline */
    }

    textarea {
        resize: none;
    }

    .btn-dark {
        background-color: var(--text-color-black);
        color: white;
        padding: 0.75rem;
        font-size: 1rem;
        border: none;
        border-radius: 0.25rem;
    }

}

@media (max-width: 768px) {
    .form-container {
        width: 90%;

        textarea {
            height: 100px; /* Reduce height on smaller screens */
            font-size: 0.875rem; /* Optional: make the text inside smaller */
        }
    }
}