
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px; /* Space between groups */
}

.form-group label {
    font-size: 0.9em;
    color: #272727; /* Dark charcoal for labels */
    margin-bottom: 5px;
    display: block; /* Ensure label is on its own line */
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    background-color: #ffffff; /* Lighter background for input fields */
    border: 1px solid #727272; /* Muted border for inputs */
    padding: 10px;
    font-family: Arial, sans-serif; /* Readable font for input text */
    font-size: 1em;
    color: #272727; /* Dark text in inputs */
    outline: none; /* Remove default outline */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    border-color: #727272; /* Olive green border on focus */
    box-shadow: 0 0 5px rgba(151, 164, 66, 0.5); /* Subtle olive glow on focus */
}

.form-group textarea {
    resize: vertical; /* Allow vertical resizing of textarea */
    min-height: 100px;
}

button[type="submit"] {
    background-color: #727272; /* Olive green button */
    color: #ffffff; /* Light beige text on button */
    padding: 12px 25px;
    border: 1px solid #727272; /* Muted border */
    font-family: 'Press Start 2P', cursive; /* Pixelated font for button */
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    align-self: flex-end; /* Align button to the right within the flex column */
}

button[type="submit"]:hover {
    background-color: #000000; /* Darker olive/brown on hover */
    color: #ffffff;
    border-color: #272727;
}
