html,
body {
    margin: 0;
    padding: 0;
}

html {
    background: #dd5702;
}

body {
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;

    box-sizing: border-box;

    font-family: 'Inter', sans-serif;
}

main {
    background: #ffe5ad;

    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;

    max-width: 50rem;

    border-radius: 2rem;

    margin: 2rem 0;

    padding: 5rem 4rem;

    box-sizing: border-box;
}

#logo {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 3rem;
    color: black;
    text-decoration: none;
}

#logo-img {
    width: 10rem;
    height: 10rem;
}

#logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;

    font-family: 'Inter Tight', sans-serif;
    font-size: 3rem;
    font-weight: 600;
}

.cta {
    background: #500c04;
    border-radius: 1rem;

    width: 100%;
    max-width: 40rem;

    color: white;

    display: flex;
    flex-direction: column;
    align-items: center;

    margin: 2rem 0;

    text-align: center;
}

.cta-button {
    background: #a81b0c;
    padding: 1rem 2rem;
    width: 100%;
    color: white;
    font-weight: 600;
    font-size: 1.5rem;
    text-align: center;
    border-radius: 1rem;

    transition: background 0.1s;

    box-sizing: border-box;
}

.cta-button:hover {
    background: #92180b;
}

.cta p {
    font-size: 0.9rem;
    margin: 1rem;
}

.cta + .cta {
    margin-top: 0;
}

.cta-orange {
    background: #782e00;
}

.cta-orange .cta-button {
    background: #dd5702;
}

.cta-orange .cta-button:hover {
    background: #b14a09;
}

.cta-yellow {
    background: #765306;
}

.cta-yellow .cta-button {
    background: #ac7808;
}

.cta-yellow .cta-button:hover {
    background: #875e05;
}

#text p {
    font-size: 1.2rem;
    font-weight: 400;
    width: 100%;
    line-height: 1.4;
    text-indent: 1.5rem;
    margin: 0;
}

#text p + p {
    margin-top: 1.5rem;
}

a {
    color: #a81b0c;
}

#form-pretext {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

@media screen and (max-width: 550px) {
    main {
        padding: 3rem 2rem;
    }

    #logo {
        margin-bottom: 0.5rem;
        flex-direction: column;
        gap: 2rem;
    }

    #logo-img {
        width: 10rem;
        height: 10rem;
    }

    #logo-text {
        font-size: 1.8rem;
        gap: 0.5rem;
        flex-direction: row;
    }
}
