:root {
    --background-color: #f9f6ec;
    --background-color-secondary: #a6a6a6;
}

body {
    background-image: url(/images/rsvpBackground.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

body::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(209, 212, 183);
    opacity: 0.5; /* branco translúcido */
    z-index: 1;
    filter: brightness(0.2);
}

body > * {
    position: relative;
    z-index: 2;
}

.headerContainer {
    background: none;
}

.formTitle {
    margin: 12rem 0;
    gap: 2rem;
    max-width: 80rem;
    text-align: center;
}

.formTitle h1,
.formTitle p {
    color: white;
    margin: 0;
    padding: 0;
}

.formTitle h1 {
    font-size: 10rem;
    font-weight: 300;
    text-transform: uppercase;
}

.formContainer {
    padding: 8rem 0;
    max-width: 100rem;
    opacity: 1;
    margin-bottom: 14rem;
}

.formContainer form {
    min-width: 100%;
    padding: 0 8rem;
    gap: 4rem;
}

.formName {
    gap: 2rem;
}

.formEmail {
    width: 100%;
}

.formEmail input {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid black;
    min-width: 100% !important;
    font-size: 1.8rem;
    height: 4.8rem;
    color: black;
    font-family: var(--font-lato);
    font-weight: 100;
}

/*   */

.guessName div {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: 100%;
    gap: 1rem;
}

.guessName {
    display: flex;
    min-width: 100% !important;
    gap: 2rem;
}

.guessName label {
    font-size: 1.4rem;
    color: black;
    font-family: var(--font-nato);
    font-weight: 100;
}

.guessName input {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid black;
    font-size: 1.8rem;
    height: 4.8rem;
    color: black;
    font-family: var(--font-lato);
    font-weight: 100;
    width: 100%;
}

#notes {
    height: 8rem;
}
