.main-container {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  & .signup-header {
    width: calc(100% - 4rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;

    & img {
      max-width: 16rem;
    }

    & p {
      font-weight: 600;
    }
  }

  #formAPIKey {
    position: relative;
  }

  & .signup-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;

    & .signup-form-area {
      display: flex;

      & > * {
        margin: 1rem 2rem 1rem 0rem;
      }

      & > *:last-child {
        margin: 1rem 0rem;
      }

      & .form-signup-responsible, .form-signup-company {
        display: flex;
        flex-direction: column;
        min-width: 25vw;

        & > * {
          margin: 1rem 0rem;
        }
      }

      /* Área da escolha do tipo de cadastro de colaboradores */
      & .form-signup-choose {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-width: 50vw;

        & .page-description {
          margin-top: 3rem;
          display: flex;
          flex-direction: column;
          align-items: center;
          padding: 0rem;
        }

        & .page-description h2 {
          text-align: center;
        }

        & .page-description p {
          text-align: center;
        }

        & .cards-area {
          display: flex;
          align-items: center;
          margin-top: 4rem;

          & > * {
            margin-right: 3rem;
          }

          & > *:last-child {
            margin-right: 0;
          }
        }

        & .card-item {
          max-width: 30rem;
        }

        & > * {
          margin: 1rem 0rem;
        }
      }

      /* Área da vinculação da API */
      & .form-signup-apikey {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-width: 35vw;

        input[type="text"] {
          width: 100%;
          font-size: 1.8rem;
          text-align: center;
          margin: 4rem 0rem 2rem;
        }
      }
    }

  & .phone-field {
    display: flex;
    justify-content: space-between;

    & > *:first-child {
      margin-right: 2rem;
      max-width: 4rem;
    }
    & > *:last-child {
      flex: 1;
    }
  }

  & .two-fields {
    display: flex;
    justify-content: space-between;

    & > *:first-child {
      flex: 3;
      margin-right: 2rem;
    }
    & > *:last-child {
      max-width: 27%;
    }
  }

  & .toggle-area {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;

    & p {
      margin-left: 1rem;
      font-size: 1.4rem;
    } 
  }

  & .input-readonly {
    background-color: #F7F7F7;
    border: 0.1rem solid #D0D0D0;
    pointer-events: none;
  }

  & .button-area {
    display: flex;
    justify-content: center;

    & button {
      padding: 1rem 6rem;
    }
  }
}

& .signup-footer {
  & p {
    font-size: 1.1rem;
    font-weight: 300;
    padding: 1rem;
  }
}
}

/* MODAL: Configurações do modal */
#modalArea {
  display: none;
}

#modalAreaTerms {
  position: fixed;
  opacity: 1;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-color: rgba(42, 40, 38, 0.8);
  z-index: 999;

  & .modal-content {
    background-color: #FFFFFF;
    flex: 1;
    width: calc(60% - 4rem);
    min-height: calc(60% - 4rem);
    max-height: calc(60% - 4rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2rem;

    & .content-header {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;

      & i {
        font-size: 2.5rem;
        cursor: pointer;
      }
    }

    & .content-body {
      background-color: #F2F2F2;
      flex: calc(1 - 4rem);
      padding: 2rem;
      overflow-y: auto;

      & p {
        margin-bottom: 1rem;
        line-height: 2.3rem;
      }

      & p:last-child {
        margin-bottom: 0;
      }
    }
  }
}