.main-container {
  width: 100%;
  height: 100vh;
  display: flex;

  & .form-section {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 5px 0 10px rgba(0, 0, 0, 0.3);
    z-index: 10;

    & .content {
      width: 100%;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;

      & img {
        width: 32rem;
      }

      & form {
        margin-top: 2rem;
        width: calc(100% - 50%);
        display: flex;
        flex-direction: column;

        & input[type="text"], input[type="password"] {
          margin-bottom: 1rem;
          text-align: center;
        }
      }

      & > #formValidation {
        & input[type="text"] {
          font-size: 3rem;
          font-weight: 800;
          text-align: center;
        }

        & .letter-spacing {
          letter-spacing: 1rem;
        }
      }

      & .page-description {
        margin-top: 3rem;
        width: calc(100% - 50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0rem 25%;
      }

      & .page-description h2 {
        text-align: center;
      }

      & .page-description p {
        text-align: center;
      }

      & .form-message {
        margin: 5rem 0rem 2rem;
      }
    }

    .validation-timer {
      margin-top: 1rem;
      font-size: 1.4rem;
    }

    .divider {
      width: calc(100% - 42%);
      margin: 2rem 0;

    }

    .create-account {
      width: calc(100% - 50%);

      & button {
        width: 100%;
      }
    }

    & .copyright {
      & p {
        font-size: 1.4rem;
        padding: 1rem;
      }
    }
  }

  & .background-section {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    
    background-color: #FFC52C;


    & img {
      max-width: 80%;
      transform: scaleX(-1);
    }
  }
}