/* Styles specific to the Contact Form */
.contact-form {
    font-family: 'Courier', monospace;
    max-width: 500px;
    margin: auto;
    padding: 1rem;
    background-color: #F5F5F5;
    border: 0.125rem dashed #000;
}

.contact-form form {
    display: grid;
    gap: 1rem;
}

.contact-form .form-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-form label {
    font-size: var(--font-size);
    letter-spacing: 0.1em;
    min-width: 100px; /* Fixed width for label */
    text-align: right;
}

.contact-form input[type="email"], .contact-form textarea, .contact-form input[type="text"] {
    font-family: 'Courier', monospace;
    font-size: var(--font-size);
    border: 1px solid #000;
    padding: 0.5rem;
    background-color: transparent;
    flex-grow: 1; /* Allows input fields to fill the available space */
}

.contact-form button {
    font-family: 'Courier', monospace;
    font-size: var(--font-size);
    padding: 0.5rem 1rem;
    background-color: #000;
    color: #FFF;
    border: none;
    cursor: pointer;
    margin-bottom: 1rem; /* Adds space below the button */
}

.contact-form button:hover {
    background-color: #333;
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    font-family: 'Courier', monospace;
    font-size: var(--font-size);
    color: #888; /* Placeholder text color, change as needed */
    opacity: 1; /* Ensures the placeholder is fully visible */
}