main {
  display: flex;

  .left {
    width: 45%;
    height: 100svh;
    position: relative;

    video {
      height: 100%;
      width: 100%;
      opacity: 0.3;
      object-fit: cover;
    }

    .ui {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;

      .company-name {
        img {
          height: 50px;
          width: 50px;
          justify-content: center;
          align-items: center;
        }
      }
    }
  }

  .right {
    width: 55%;

    .step2 {
      display: none;
    }

    .container {
      display: flex;
      flex-direction: column;
      gap: 50px;
      justify-content: center;
      align-items: center;
      height: 100svh;

      form {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;

        input {
          padding: 10px;
          font-size: 16px;
          width: 50%;
        }

        button {
          padding: 20px;
          font-size: 16px;
          border: none;
          cursor: pointer;
        }
      }

      .error-message {
        color: rgb(255, 98, 98);
        margin-bottom: 10px;
        opacity: 0;
        transform: translateY(-10px);
        transition:
          opacity 0.3s ease,
          transform 0.3s ease;
      }
    }
  }
}
