.auth-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.authentication-input {
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 16px;
}
.authentication-button {
  font-size: 14px;
  font-weight: 600;
  height: 48px;
  line-height: 20px;
  background-color: #154232 !important;
  border-color: #154232 !important;
  border-radius: 4px;
}
.resend-otp {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 5px;
  justify-content: center;
}
.change-number {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.auth-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1rem;
  background-color: #f7f7f7;
}

.auth-card-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.step-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-title {
  color: #001b66;
  display: flex;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  justify-content: flex-start;
}

.continue-button {
  height: 48px;
  border-radius: 4px;
  background-color: #154232;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.continue-button:disabled {
  background-color: #a6a6a6;
  cursor: not-allowed;
}

.input-container {
  display: flex;
  gap: 10px;
}

.input-container input {
  flex: 1;
}

.digits-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.otp-input {
  width: 35px;
  height: 35px;
  text-align: center;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  outline: none;
}

.otp-input:focus {
  border-color: #154232;
}

.error-message-auth {
  color: red;
  font-size: 12px;
  margin-top: 8px;
}
.step-3-message {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 16px;
  border: 1px solid #45a5ff;
  border-radius: 4px;
  background: #deeffe;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0em;
}
.auth-title {
  display: flex;
  justify-content: flex-start;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #001b66;
}
@media only screen and (max-width: 992px) {
  .auth-card-steps {
    padding: 16px;
    box-shadow: none;
    background: none;
  }

  .input-container {
    flex-direction: column;
    gap: 24px;
  }

  .otp-input {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}
