:root {
    --primary-color: #0010A2;
    --secondary-color: #08147D;
    --text-color: #fff;
    --background-color: #08147D;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
}

body.water-bg {
    background-image: url("/images/Recover-Water-Dark-Background.png");
    background-size: cover;
    background-attachment: fixed;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
    margin: 0 50px;
}

section.logo {
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-image: url("/images/slats-blue-on-transparent.png");
    width: calc(100vw - 15px);
}


section.logo img {
    height: auto;
    background-color: var(--text-color);
}

h1 {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 3em;
    max-width: 500px;
    text-align: center;
    line-height: 1.3em;
}

section.logo-emblem {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    margin: 3em auto;
}

section.logo-emblem img {
    width: 100%;
    height: auto;
}

a.button {
    display: inline-block;
    padding: 0.9em 1.7em;
    background-color: var(--secondary-color);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border: 4px solid white;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.25em;
}

p {
    max-width: 600px;
}

#mc_embed_shell {
    color: #101010;
}

#mc_embed_signup {
    padding-top: 1em;
    max-width: 80vw;
}

@media (max-width: 600px){
    #mc_embed_signup form .mc-address-fields-group {
        flex-direction: column;
        gap: 0;
    }
}