body {
  margin: 0;
  line-height: 1.5;
  font-weight: 400;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #c5ced4;
  font-family: "Manrope", sans-serif !important;
  height: 90vh;
  font-family: "Manrope", sans-serif;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
}

.card {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.03),
    0 1px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px 0 rgba(0, 0, 0, 0.02);
  position: relative;
  background: #ffffff;
  border-radius: 8px;
  font-size: 14px;
  box-sizing: border-box;
  padding: 20px;
  margin: 10px auto 0;
  max-width: 500px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.divider {
  margin-top: 14px;
  margin-bottom: 14px;
  border-block-start: 1px solid rgba(5, 5, 5, 0.06);
}

.message-wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.message > div:nth-child(1) {
  font-weight: 900;
  font-size: 14px;
  color: #353f50;
}

.message > div:nth-child(2) {
  color: #707e94;
  font-size: 12.8px;
  font-weight: 500;
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}

.badge {
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 13px;
  border-radius: 10px;
  border: 1px solid #e4e8ee;
  font-size: 13px;
  box-shadow: 0px 10px 10px #e3e6e7;
  border-left: 5px solid #0275d8;
  font-weight: 600;
  color: #353f50;
}

.merchant-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0 6px 0;
}

.merchant-details > .title {
  color: #707e94;
  font-weight: 500;
}

.merchant-details > .value {
  color: #353f50;
  font-weight: 700;
  text-align: right;
}

.otp-form {
  margin-top: 25px;
}

.otp-label {
  font-size: 12.5px;
  font-weight: 700;
  color: #353f50;
}

.input-wrapper {
  display: flex;
  align-items: center;
  margin-top: 6px;
  margin-bottom: 8px;
  column-gap: 5px;
}

.input-wrapper > .otp-spacer {
  width: 5px;
}
.input-wrapper > input {
  width: 1em;
  text-align: center;
  flex: 1 1 0%;
  border-width: 0px;
  border-radius: 5px;
  background: rgb(243, 245, 246);
  height: 50px;
  font-size: 30px;
  color: rgb(18, 18, 18);
}

/* Chrome, Safari, Edge, Opera */
.input-wrapper > input::-webkit-outer-spin-button,
.input-wrapper > input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.input-wrapper > input[type=number] {
  -moz-appearance: textfield;
}

.resend-cancel-wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.font-mini {
  font-size: 13px;
}

.cancel-btn{
  font-weight: 600;
  cursor: pointer;
  color: #e74c3c;
  font-size: 13px;
}

.font-mini > .resend-btn {
  color: #0275d8;
  font-weight: 900;
  cursor: pointer;
}

.font-mini > .resend-btn:disabled {
  border-color: #d9d9d9;
  color: rgba(0, 0, 0, 0.25);
  box-shadow: none;
  cursor: not-allowed;
}

.submit-btn {
  width: 100%;
  height: 46px;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff;
  background-color: #0275d8;
  box-shadow: 0 2px 0 rgba(5, 145, 255, 0.1);
  font-size: 14px;
  line-height: 1.5714285714285714;
  padding: 4px 15px;
  border-radius: 6px;
}

.submit-btn:disabled {
  cursor: not-allowed;
  border-color: #d9d9d9;
  color: rgba(0, 0, 0, 0.25);
  background: rgba(0, 0, 0, 0.04);
  box-shadow: none;
}

footer {
  display: flex;
  justify-content: center;
}

.toastOTP{
  background-color: white !important;
  width: 90%;
  max-width: 450px !important;
  border-left: 8px solid;
  display: flex !important;
  justify-content: space-between;
}

.Toastify__toast--success {
  border-left-color: #36743d !important;
  background: #f1fef1 !important;
  color: #163c29 !important;
}
.Toastify__toast--error {
  border-left-color: #e74c3c !important;
  background: #fbe9e9 !important;
  color: #a4251a !important;
}

.toastOTP > .toast-close{
  color: #222 !important;
}

.hide{
  display: none;
}

.show-attempt-text{
  text-align: center;
  color: #a4251a;
  
}

@media only screen and (min-width: 1440px) {
  .card {
    width: 35vw;
  }
}
