.flex-column {
    flex-direction: column;
}

.register {
    min-height: 65vh;
    display: flex;
    background-color: #ffeed1;
}

footer {
    min-height: 35vh;
    display: flex;
    background-color: #111118;
    text-align: center;
}

footer img {
    max-width: 87px;
    margin-bottom: 24px;
}

.button {
    border: solid 2px #ffeed1;
    line-height: 1;
    padding: 6px 12px;
    min-width: 120px;
    text-align: center;
    color: #ffeed1;
    text-decoration: none;
}

.register .container {
    display: flex;
    flex-direction: row;
}

.register h2 {
    font-size: 40px;
    line-height: 1.1;
}

.sign-up {
    display: flex;
    border-bottom: solid 2px #1bb190;
    padding-bottom: 12px;
}

.form {
    margin: 48px 24px;
}

input {
    background: none;
    border: none;
    font-size: 21px;
}

.email-input {
    /* this will tell our input to stretch out and fill the available space  */
    flex: 1;
}

.eyes {
    width: 108px;
    height: 32px;
    background-image: url(../assets/images/eyes_open.svg);
}

.hand {
    width: 57px;
    height: 89px;
    background-image: url(../assets/images/ok_hand.svg);
    /* this aligns to hand to the bottom of its container */
    align-self: flex-end;
}

.eyes,
.hand {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}


@media (max-width: 768px) {
  .register .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .register h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  /* .sign-up {
    flex-direction: column;
    align-items: stretch;
  } */

  .eyes,
  .hand {
    align-self: center;
    margin: 16px 0;
  }
}
