body {
    background: rgba(208, 211, 212, 0.3);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: white;
    margin: 0;
}

h1 {
    font-weight: bold;
    font-size: 2rem;
    margin: 0;
}

article {
    position: absolute;
    padding: 2rem;
    width: calc(100% - 4rem);
}

button {
    width: 100%;
    height: 3rem;
    background: rgb(232, 146, 124);
    border: none;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 0.5rem;
    margin: 1rem 0;
}
button:hover {
    cursor: pointer;
    background: rgb(207, 130, 110);
}

header {
    margin: 1rem 0;
}

.footer-mobile {
    font-size: 0.8rem;
    text-align: center;
}
.footer-mobile > p {
    margin: 0;
}

.footer-desktop {
    display: none;
    position: absolute;
    font-size: 0.8rem;
    bottom: 0;
    padding: 0 0 5vh 5%;
    width: 40%;
}

.container {
    position: relative;
    height: 100vh;
}

.form-blue {
    position: fixed;
    height: 100%;
    width: 100%;
    background: rgb(0, 114, 152);
    border-radius: 0 0 5vh 0;
    top: 0;
    left: 0;
    z-index: -1;
}

.form-yellow {
    display: none;
    position: fixed;
    min-height: 50%;
    width: 15%;
    background: rgb(197, 183, 131);
    top: 0;
    left: 70%;
    z-index: -1;
}

.form-grey {
    display: none;
    position: fixed;
    height: 65%;
    width: 15%;
    background: rgb(208, 211, 212);
    bottom: 0;
    left: 85%;
    z-index: -1;
    border-radius: 0 125px 0 0;
}

.logo {
    width: 60%;
    max-width: 326px;
}

.logo-yellow {
    position: absolute;
    width: 50%;
    padding: 25%;
    bottom: 0;
}

.logo-top {
    text-align: center;
    margin-bottom: 4rem;
}

@media only screen and (min-width: 800px) {
    h1 {
        font-size: 34px;
    }

    article {
        padding: 30vh 0 0 5%;
        width: 50%;
    }

    button {
        width: 50%;
        max-width: 400px;
    }

    .footer-mobile {
        display: none;
    }

    .footer-desktop {
        display: block;
    }

    .form-blue {
        width: 70%;
        border-radius: 0 0 50vh 0;
    }

    .form-yellow {
        display: block;
    }

    .form-grey {
        display: block;
    }

    .logo-top {
        display: none;
    }
}

@media only screen and (min-width: 1200px) {
    h1 {
        font-size: 3rem;
    }

    .form-blue {
        border-radius: 0 0 50vh 0;
    }
}

@media only screen and (min-width: 800px) and (max-height: 650px) {
    article {
        padding: 10vh 0 0 5%;
    }
}
