* {
  box-sizing: border-box;
}

body {
  background-color: black;
}

.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
}

.form-wrapper {
  width: 100%;
  margin-bottom: 80px;
}
.form-wrapper form {
  display: flex;
}
.form-wrapper form .text-input-wrapper {
  width: 100%;
  position: relative;
}
.form-wrapper form input[type=text] {
  color: red;
  width: 100%;
  height: 50px;
  outline: none;
  padding: 0 62px 0 12px;
  font-size: 18px;
  border-radius: 5px 0 0 5px;
  border: 1px solid #dbfaff;
  background-color: #dbfaff;
  transition: all 0.3s ease-in-out;
}
.form-wrapper form input[type=text]:focus {
  border: 1px solid #000000;
}
.form-wrapper form button,
.form-wrapper form .button {
  cursor: pointer;
}
.form-wrapper form .clear-input {
  color: #dbfaff;
  border: 1px solid #dbfaff;
  background-color: #000000;
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  width: 50px;
  font-size: 24px;
  line-height: 50px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-content: center;
  outline: none;
  transition: all 0.3s ease;
  visibility: hidden;
  opacity: 0;
}
.form-wrapper form .clear-input:hover, .form-wrapper form .clear-input:focus {
  background-color: #000000;
}
.form-wrapper form .clear-input.is-shown {
  visibility: visible;
  opacity: 1;
}
.form-wrapper form .clear-input span {
  display: block;
  line-height: 32px;
}
.form-wrapper form .button {
  outline: none;
  background-color: red;
  border: 1px solid lime;
  border-radius: 0 5px 5px 0;
  padding: 0 40px;
  color: #dbfaff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 22px;
  height: 50px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.form-wrapper form .button:hover, .form-wrapper form .button:focus {
  background-color: #174f78;
}
@media screen and (max-width: 480px) {
  .form-wrapper form {
    flex-wrap: wrap;
  }
  .form-wrapper form input[type=text] {
    border-radius: 5px 5px 0 0;
  }
  .form-wrapper form .button {
    border-radius: 0 0 5px 5px;
    width: 100%;
  }
}

.visualizer {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 32px;
}
.visualizer .eyes {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.visualizer .eyes > div {
  background-color: red;
  height: 50px;
  width: 50px;
  border-radius: 100%;
}
.visualizer .mouth {
  display: flex;
  justify-content: center;
  align-items: center;
}
.visualizer .mouth > div {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visualizer .mouth > div .line {
  width: 100%;
  height: 8px;
  background-color: red;
  border-radius: 4px;
}