body {
  margin: 0;
  padding: 0;
  background-image: url("form.jpg");
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100vh;
  width: 100vw;
  background-size: cover;
  position: relative;
}

body::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(120deg, rgba(212, 252, 121, 0.6) 0%, rgba(150, 230, 161, 0.6) 100%);
}

body .footer {
  z-index: 2;
}

body .footer span {
  font-size: 30px;
  font-style: italic;
  color: #000;
  text-align: right;
  padding: 10px;
  margin-bottom: 5px;
  font-family: Century Gothic, sans-serif;
}

body .footer__author {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  text-align: center;
  padding: 10px;
  margin-top: 0px;
  font-family: Century Gothic, sans-serif;
  font-weight: 500;
}

.form-container {
  width: 375px;
  height: 520px;
  font-size: 20px;
  color: #000;
  background: #FFF;
  border-radius: 13px;
  margin: auto;
  border: 1px solid #2fb665;
  opacity: 0.8;
}

.form-container form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-container form .name, .form-container form .email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 70%;
  margin-bottom: 10px;
  font-family: Century Gothic, sans-serif;
}

.form-container form .comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: Century Gothic, sans-serif;
  margin: 20px;
}

.form-container form .comment textarea {
  margin: 10px;
}

.form-container form .btn {
  margin-bottom: 10px;
}

.form-container form .btn button {
  background-color: #FFF;
  color: #000;
  font-weight: 600;
  border: 2px solid #4CAF50;
  padding: 15px 40px;
  font-size: 20px;
  font-family: Century Gothic, sans-serif;
  border-radius: 5px;
}

.form-container form .btn button:hover {
  background-image: linear-gradient(120deg, #d4fc79 0%, #96e6a1 100%);
}

h2 {
  text-align: center;
  padding: 5px;
  font-family: Century Gothic, sans-serif;
  font-size: 40px;
}
/*# sourceMappingURL=ejercicio8.css.map */