.main {
  display: flex;
  width: 100vw;
  height: 100vh;
}
/* To remove arrows from number otp inputs */
/* input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
} */

.leftColumn {
  margin: 0;
  flex: 1;
  background-color: #ffa500;
}

.logo {
  padding: 40px;
}

.rightColumn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 0px;
}

.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60%;
}

@media (max-width: 768px) {
  .leftColumn {
    display: none;
  }
  .rightColumn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
  }
  .form {
    width: 90%;
  }
}
