.account-modal {
  width: 90vw !important;
  max-width: 1300px !important;
}

.account-modal-header {
  background-color: #465fca;
  color: #fff;
}

.account-modal-button {
  background-color: #465fca !important;
  color: #fff !important;
}

.account-modal-button-save {
  background-color: #465fca !important;
  color: #fff !important;
  display: grid;
  place-content: center;
}

.account-modal-button-loader {
  pointer-events: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #fff !important;
  animation: an1 1s ease infinite;
}
@keyframes an1 {
  0% {
    transform: rotate(0turn);
  }
  100% {
    transform: rotate(1turn);
  }
}
.account-modal-heading {
  padding: 1rem;
  font-weight: 600;
  border-bottom: solid 1px black;
}

.account-modal-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.account-modal-form-layout {
  width: 100%;
}

.account-modal label {
  color: #465fca !important;
}

.otp-input {
  height: 40px !important;
  width: 40px !important;
  border-color: black !important;
}

.account-modal-form-paragraph {
  color: #465fca !important;
}

.account-modal-list {
  color: #465fca !important;
  padding-left: 3rem;
  list-style: decimal;
}

.account-modal-create-account {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}
