body {
    background: #27292d;
}

.content {
    text-align: center;
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin: 0;
    background: #001F3F;
}

/* Using the pre-cropped "Small" portrait images here instead of the
   landscape "Large" ones -- object-fit:cover still fills the panel exactly,
   but now the source image's own proportions actually match the panel's
   shape, so cover barely has to crop anything. */
.contact-photo {
    display: block;
    flex: 1 1 0;
    min-width: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 845px) {
    .contact-photo {
        display: none;
    }

    .content {
        background-image: url('/images/contactFormImages/StageImage.jpg');
        background-size: cover;
        background-position: center;
    }
}

#contact-form-container {
    background-color: #001F3F;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 14px 20px;
    width: 400px;
    flex: 0 0 auto;
    margin: auto;
}

.contact-intro {
    text-align: left;
    margin-bottom: 32px;
}

.contact-intro h1 {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 10px;
}

.contact-intro p {
    color: #FFFFFF;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

#contact-form label {
    display: block;
    margin-bottom: 10px;
    color: #FFFFFF;
    text-align: left;
}

#contact-form input,
#contact-form select,
#contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 22px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 1rem;
    background-color: #FFFFFF;
}

.g-recaptcha {
    margin-bottom: 16px;
}

#contact-form button {
    background-color: #FFD700;
    color: #001F3F;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

#thank-you-message {
    display: none;
    margin-top: 20px;
    color: #FFFFFF;
}
