.regbox {
  background: url(../../images/doc-register.jpg) no-repeat 0 0;
  border-radius: 15px;
  justify-content: end;
}

.formbox {
  background-color: #145db7;
  color: #fff;
  border-radius: 0 15px 15px 0;
}

.dvotpholder {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 500px;
  margin-left: -250px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 1px 1px 1px #ccc;
}

.login-for-holder-header {
  background-color: #145cb6;
  color: #fff;
  padding: 15px;
  font-weight: 700;
  border-radius: 5px 5px 0 0;
}

.log-form-container {
  padding: 15px;
}

.otplnk {
  color: #145db7;
  cursor: pointer;
}

@media (max-width: 990px) {
  .regbox {
    justify-content: center;
    background: transparent;
  }

  .formbox {
    border-radius: 2px;
  }
}

@media (max-width: 500px) {
  .dvotpholder {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
  }
}

/* ----------------  */

.otp-container {
  background-color: #f8f9fa;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
  margin: 0;
}
.verification-card {
  display: flex;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 800px;
  width: 100%;
}
.left-section {
  padding: 40px;
  flex: 1;
}
.right-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f7fa;
}
.right-section img {
  max-width: 100%;
  height: auto;
}
.resend-link {
  color: #0d6efd;
  cursor: pointer;
}
.resend-link:hover {
  text-decoration: underline;
}
