body{
    color: #FFF;
}

.layer{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.background{
    background-image: url("assets/background-min.png");
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;
    transform: scale(1.1);
    z-index: -2;
}

.overlay{
    background-color: rgba(0, 0, 0, 0.83);
    z-index: -1;
}

.container-wrapper{
    z-index: 0;
    padding: 0 40px;
    overflow: auto;
}

.container-wrapper .container{
    display: flex;
    height: 100%;
    flex-direction: column;
}

.container .logo-wrapper{
    display: grid;
    align-content: end;
    margin-bottom: 40px;
}

.container .logo{
    width: 200px;
}

.container .content{
    flex: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.container .content .title{
    font-weight: 700;
    font-size: 2em;
    text-transform: capitalize;
}

.mc-field-group{
    background: rgb(255, 255, 255);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    max-width: 400px;
}

.mc-field-group *{
    background: transparent;
    border: none;
    outline: none;
    height: 40px;
}

.mc-field-group input.email{
    padding: 0 20px;
    width: 100%;
}

.mc-field-group input.button{
    background: #3e7ea4;
    width: 160px;
    text-transform: uppercase;
    font-weight: 500;
}

.container .footer{
    flex: 1;
    text-align: center;
    font-weight: 100;
}

@media (min-width: 1000px) {
   .container .content .title{
        font-weight: 700;
        font-size: 4em;
    }
}