#contactForm{
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 0 auto;
    padding: 1rem;
}

.contactInputContainer{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 1rem;
}

.contactInputContainer input{
    flex: 1 1 calc(50% - 1rem);
}

.contact-radioButtons{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.inputRadioButton{
    background-color: #1a1a1a;
    color: white;
    border: 2px solid #ffc107;
    border-radius: 30px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.inputRadioButton.active {
    background-color: #ffc107;
    color: black;
    box-shadow: 0 0 10px #ffc10788;
}

@media(max-width: 450px){
    .contactInputContainer input {
        flex: 1 1 100%;
    }
}

input,
textarea {
    background-color: #1a1a1a; /* dark background to match the site */
    color: #ffffff; /* white text */
    border: 2px solid var(--electric-yellow); /* yellow/gold accent for contrast */
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    width: 100%;
    transition: border-color 0.3s, box-shadow 0.3s;
    font-size: 1rem;
}

textarea{
    min-height: 200px;
}

