.form-field {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #ccc;
}

#successMessage {
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    color: #A1C930;
    width: 40vw; /* Set width to 40% of the viewport width */
    height: 20vh; /* Set height to 20% of the viewport height */
    align-items: center; /* Vertically center the text */
    justify-content: center; /* Horizontally center the text */
    padding: 0; /* Remove padding to avoid extra height */
    border-radius: 0.375rem;
    font-size: 1rem; /* Adjust font size to fit */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    font-weight: 600;
    text-align: center; /* Center text alignment */
}