.section-step {
  max-width: 1244px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  padding: 40px 80px 30px;
  border-radius: 0 0 5px 5px;

  .container-text {
    width: 100%;
    text-align: center;
  }

  .container-elements {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;

    .container-camps {
      position: relative;
      width: 100%;
      max-width: 510px;
      margin: 30px auto;

      @media screen and (max-width: 1100px) {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
      }

      button {
        max-width: 264px;
        margin-bottom: 40px;
      }

      >* {
        margin: 0 10px;
      }

      div.input-select-transition {
        max-width: 509px;
        width: 100%;

        input~p {
          display: none;
        }

        input.ng-touched~p,
        input.ng-dirty~p {
          display: block;
        }

        input.ng-touched:valid~p,
        input.ng-dirty:valid~p {
          display: none;
        }
      }

      .msgCorrect {
        opacity: 0;
        font-size: 14px;
        transition: 0.6s;
        color: #52B944;
        position: relative;
        margin-left: 20px;

        &::before {
          content: "\e906";
          opacity: 0;
          font-size: 30px;
          font-family: icon_font;
          position: absolute;
          top: -12px;
          left: -25px;
        }

        &.sendCode {
          opacity: 1;

          &::before {
            opacity: 1;
          }
        }
      }

      .description-otp {
        font-family: sourcesanspro;
        font-size: 16px;
        color: #6e7c84;
        width: 100%;
        text-align: center;
        margin-top: 11px !important;
      
        a {
          color: #00a9ce;
          border-bottom: 2px solid #00a9ce;
          font-style: italic;
        }
      
        a:hover {
          color: #00a9ce;
          text-decoration: none;
          cursor: pointer;
        }
      }      
    }

    .container-buttons {
      display: flex;
      justify-content: center;
      align-items: center;
      max-width: 510px;
      margin: 0 auto;
      width: 100%;

      button {
        margin: 10px 30px;

        @media screen and (max-width: 500px) {
          margin: 5px;
        }
      }
    }
  }

  @media screen and (max-width: 800px) {
    padding: 40px 20px 30px 20px;
  }
}

.message-body {
  margin: 5px 0px;
  font-weight: 700;
}