body {
  background: linear-gradient(90deg, #043D3D, #024E4E);
}

.footer-slogan {
  display: none;
}

.navbar {
  left: 0;
}

.content {
  /* height: 550px; */
  padding-top: 200px;
  padding-bottom: 1rem;

  color: white;
  box-sizing: border-box;
  /* Set text at the bottom of container */
  display: flex;
  flex-direction: column;

  .title {
    font-family: "Garamond";
    font-size: 65px;
    font-weight: 300;
    line-height: 75.17px;
    text-align: left;

    padding-bottom: 1rem;
  }

  .subtitle {
    font-family: 'Graphik';
    font-size: 18px;
    font-weight: 300;
    line-height: 19.8px;
    text-align: left;
  }

  label {
    font-family: 'Graphik';
    font-size: 18px;
    font-style: italic;
    font-weight: 100;
    line-height: 19.8px;
    text-align: left;
  }
}

root {
  --primary: #11998e;
  --secondary: #38ef7d;
  --white: #fff;
  --gray: #9b9b9b;
}

.container {
  width: auto !important;
}

.form__group {
  position: relative;
  padding: 15px 0 0;
  margin-top: 10px;
  /* width: 50%; */
  /* width: 100%; */
}

.form__field {
  font-family: inherit;
  width: 100%;
  border: 0;
  border-bottom: 2px solid;
  outline: 0;
  font-size: 1.3rem;
  color: var(--white);
  padding: 7px 0;
  background: transparent;
  transition: border-color 0.2s;

  &::placeholder {
    color: transparent;
  }

  &:placeholder-shown~.form__label {
    font-size: 1.3rem;
    cursor: text;
    top: 20px;
  }
}

.form__label {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 1rem;
  color: var(--gray);
}

.form__field:focus {
  ~.form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 1rem;
    color: var(--primary);
    font-weight: 700;
  }

  padding-bottom: 6px;
  font-weight: 700;
  border-width: 3px;
  border-image: linear-gradient(to right, var(--primary), var(--secondary));
  border-image-slice: 1;
}

/* reset input */
.form__field {

  &:required,
  &:invalid {
    box-shadow: none;
  }
}

.button_container {
  text-align: end;
}

.button_enviar {
  font-family: 'Graphik';
  font-size: 18px;
  font-weight: 500;
  line-height: 19.8px;
  text-align: center;

  letter-spacing: 0em;
  text-align: center;

  background-color: #BF4E30;
  color: #FFFFFF;

  border-radius: 10px;
  border-color: #BF4E30;
  padding: 0.5rem 3rem 0.5rem 3rem;
  text-align: right;

  width: max-content;

  margin-top: 2rem;
}

@media only screen and (max-width: 700px) {
  .button_enviar {
    text-align: center;

    width: 100%;
  }
}

.success{
  font-family: 'Graphik';
  font-size: 20px;
  font-weight: 300;
  line-height: 25px;
  text-align: center;

  padding: 2rem 0;
  border-radius: 10px;

  margin-bottom: 2rem;
  background-color: #fff;
  color: #044242;
  border-color: #BF4E30;;

  .bold{
    font-weight: 600;
  }
}