/* =========================
   CONTACT SECTION
========================= */

.contact-us {
    position: relative;
    width: 100%;
    margin: 0;
    margin-top: 75px;
    background-color: #272447;
}

/* =========================
   BACKGROUND LAYER
========================= */

.contact-us .bg {
    position: absolute;
    inset: -310px 0 0 -5px;
    width: 101vw;
    height: 400px;

    background: url('/media/parallax/layer-01.png');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;

    pointer-events: none;
}

/* =========================
   CONTAINER
========================= */

.contact-us__container {
    padding: 50px 0;
    position: relative;
    z-index: 1;
}

.contact-us__content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 var(--side-padding);
    gap: 60px;
}

/* =========================
   FORM
========================= */

.contact-us__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* =========================
   INPUTS
========================= */

.form-input-container {
    width: 220px;
}

.message-input-container {
    width: 280px;
}

.form-input-container input,
.message-input-container textarea {
    width: 100%;
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: var(--primary-text-color);
    font-family: "Indie Flower", cursive;
    outline: none;
}

/* textarea only */
.message-input-container textarea {
    min-height: 70px;
    height: 70px;
    resize: vertical;
}

/* underline effect */
.input-underline {
    height: 3px;
    margin-top: 5px;
    margin-bottom: 20px;
    background: var(--background-accent-color2);
}

/* =========================
   BUTTON
========================= */

.contact-us__form button {
    width: 120px;
    padding: 8px;
    border: none;
    background: var(--background-accent-color2);
    color: var(--primary-text-color);
    font-size: 1rem;
    cursor: pointer;
    border-radius: 8px;
}

/* =========================
   TEXT SIDE
========================= */

.ortext {
    font-weight: 100;
    font-size: 3rem;
}

.contact-info {
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-weight: 100;
}

.contact-info a {
    color: var(--background-accent-color2);
    text-decoration: none;
}

input::placeholder {
    color: rgba(233, 233, 233, 0.6); /* soft light version of your text */
    opacity: 1; /* ensures consistency across browsers */
}

textarea::placeholder {
    color: rgba(233, 233, 233, 0.6); /* soft light version of your text */
    opacity: 1; /* ensures consistency across browsers */
}