#contact-form-overlay {
    position: fixed;
    background-color: #000C;
    width: 100%;
    height: 100%;
    z-index: 1001;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.contact-form-overlay-visible {
    opacity: 1;
    visibility: visible;
}

.contact-form-overlay-disappearing {
    opacity: 0;
}

.contact-form-overlay-invisible {
    opacity: 0;
    visibility: collapse;
}

#contact-form-content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    justify-content: center;
    width: 60%;
    background-color: lightgray;
    padding: 30px;
    border-radius: 20px;
}

#contact-form-welcome-image {
    max-width: 100%;
    max-height: 50px;
}

#contact-form-body-1-container {
    background-color: white;
    padding: 0px 20px;
    border-radius: 20px;
}

#contact-form-body-1-container p {
    font: 1.2em "FOT-PopJoy Std";
    line-height: 1.2;
}

#business-email {
    color: blue;
}

#contact-form-body-1-note {
    color: red;
}

#contact-form-columns-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

#contact-form-left-column {
    flex: 1 1 50%;
    background-color: white;
    border-radius: 20px;
    padding: 20px;
}

#contact-form-left-column label {
    font: 1.2em "FOT-PopHappiness Std";
    line-height: 1;
}

#contact-form-left-column input {
    font: 1.2em "FOT-PopHappiness Std";
    line-height: 1;
}

#contact-name-field, #contact-subject-field {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

#contact-name-field label, #contact-subject-field label {
    width: 12%;
}

#contact-name-field input, #contact-subject-field input {
    flex: 1 0 auto;
}

#contact-message-field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
}

#contact-message-input {
    font: 1.2em "FOT-PopHappiness Std";
    line-height: 1.2;
    width: 100%;
}

#contact-submit-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#contact-submit-button {
    font: 1.2em "FOT-PopHappiness Std";
    padding: 0px 10px;
}

#contact-send-result-message {
    font: 1.2em "FOT-PopHappiness Std";
    margin: 0px;
}

#contact-form-right-column {
    flex: 1 1 50%;
    background-color: white;
    border-radius: 20px;
    padding: 0px 20px;
}

#contact-form-right-column p {
    font: 1.2em "FOT-PopJoy Std";
    line-height: 1.2;
}