div.contact-container
{
    width: 95%;
    margin: 0 auto;
}

div.contact-form
{
    width: 100%;
    margin: 20px auto 0;
    border: 1px solid #0e0e0e;
    padding: 0px 24px;
}

p.contact-top
{
    font-size: 1.2rem;
    padding-top: 36px;
    margin-top: 0;
}

div.social-media-links
{
    display: flex;
    flex-direction: column;
}

div.social-media-link-row
{
    display: flex;
    align-items: center;
    margin: 6px 0;
}

p.social-media-link
{
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 10px;
}

img.social-media-link
{
    width: 50px;
    height: 50px;
}

label.contact
{
    font-size: 1.2rem;
}

form.contact
{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

input[type="text"].contact, input[type="email"].contact
{
    width: 450px;
    margin-bottom: 32px;
}

textarea.contact
{
    width: 100%;
    height: 320px;
    font-size: 1.15rem;
    border: 1px solid #0e0e0e;
}

p.contact-form
{
    font-weight: 700;
    font-size: 1.4rem;
    text-align: center;
}

.g-recaptcha
{
    margin: 20px 0;
}

button.contact
{
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    border: 1px solid #0e0e0e;
    cursor: pointer;
    background-color: #e77ab7;
    padding: 10px 32px;
    border-radius: 8px;
    position: relative;
}

/* underline */
button.contact::after
{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px; /* adjust vertical position */
    width: 0%;
    height: 2px;
    background: #0e0e0e;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

button.contact:hover::after
{
    width: calc(100% - 64px); /* matches padding (32px each side) */
}

button.contact:active
{
    background-color: #FFFFFF;
}

.error
{
    border-color: red;
}

.error-message
{
    color: red;
    font-size: 1rem;
    margin-top: 6px;
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
}

div.contact-form-spacer
{
    width: 100%;
    height: 50px;
}

p.message-character-count
{
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* #Mobile */
@media (max-width: 767.99px) {
    input[type="text"].contact
    {
        width: 100%;
    }

    input[type="email"].contact
    {
        width: 100%;
    }

    button.contact
    {
        margin: 0 auto;
    }

    .g-recaptcha
    {
        margin: 20px auto;
    }

}