body {
    background-color: #0F284F;
    font-family: Roboto, "Helvetica Neue", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.topIcon {
    width: 75px;
    height: 75px;
    fill: white;
    padding: 20px;
}

.backIcon {
    width: 50%;
    position: absolute;
    left: -9%;
    top: -6%;
    fill: #314768;
    z-index: -1;
}

.content {
    border-radius: 20px 20px 0 0;
    background-color: white;
    color: #0F284F;
    margin: 0 40px;
}

.textArea {
    padding: 50px 50px 0 50px;
    line-height: 1.5em;
    margin-bottom: 100px;
}

h1 {
    font-size: 1em;
    font-weight: normal;
    text-align: center;
    text-transform: uppercase;
}

h2 {
    font-size: 1.3em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 64px;
}

.listStyleCheck {
    list-style: none;
    padding-left: 1em;
}
.listStyleCheck > li {
    padding-left: 1.5em; 
    text-indent: -2em;
}
.listStyleCheck > li:before {
    content: '';
    display: inline-block;
    vertical-align:middle;
    background-image: url('../images/check.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 1.5em;
    height: 1.5em;
    margin-right:0.5em;
}

.button {
    padding: 15px 25px;
    font-size: 24px;
    cursor: pointer;
    outline: none;
    color: white;
    background-color: #235FC6;
    border-radius: 4px;
  }

  form>div {
    text-align: center;
  }

@media only screen and (max-width: 40em) {
    body {
        font-size: x-large;
    }
    .content {
        margin: 0 20px;
    }
    .textArea {
        padding: 30px 20px 0 20px;
    }
}

