.custom-white-card {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.custom-card {
  width: 600px;
  margin: 0;
}

.msg-title p {
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}

.msg-desc p {
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
}
.custom-white-card  .iti{
  width: 100%;
}
.otp-input-group {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.otp-input-group .otp-input {
  width: 46px;
  height: 46px;
  border-radius: 5px;
  transition: box-shadow .15s ease;
  border: 0;
  /* border-bottom: 2px solid #5e72e4; */
  box-shadow: 0 1px 3px rgba(50, 50, 93, .15), 0 1px 0 rgba(0, 0, 0, .02);
  padding: 0.625rem 0.75rem;
  text-align: center;
}
.otp-input-group .otp-input:focus{
  border-bottom: 2px solid #5e72e4;
  box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08) !important;
}

/* custom-success-card */
.custom-success-card{
  min-height: 330px;
  width: 400px;
  padding: 20px;
}
.check-sign{
  border-radius: 50%;
  height: 50px;
  width: 50px;
  color: #5e72e4;
  border: 2px solid #5e72e4;
  display: flex;
  justify-content: center;
  font-size: 30px;
  align-items: center;
  margin: auto;
}
.suceess-msg-box{
  padding: 10px;
    border-radius: 0px;
}
.success-title p{
  margin-bottom: 0;
  color: #5e72e4;
  font-weight: 800;
  margin-top: 20px;
  text-align: center;
  font-size: 25px;
}
.success-desc p{
  margin-bottom: 0;
  font-weight: 600;
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
  line-height: 19px;
}
.custom-btn{
  color: #5e72e4;
    border-color: #5e72e4;
    background-color: #fff;
    padding:5px 15px ;
    box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
}
  
.error {
  color: red;
}  

/* Below code is added to fix copyright footer at the center of the bottom for the dashboard page, but due to page's less content and size i have fixed the footer at the center bottom of the screen rather the page so if in future if the dashboard design updated we need to update this too.*/
.custom-footer-bottom{
  position: fixed;
  bottom: 0;
  left: 10%;
  right:0;
  /* text-align: center; */
}
.custom-footer-bottom .footer{
  background-color: unset;
}
@media (max-width:767px) {
  .custom-footer-bottom{
    left: 0;
  } 
}
@media (min-width:1500px) {
  .custom-footer-bottom{
    left: 7%;
  } 
}