.blink {
  animation: blink-animation 1s steps(5, start) infinite;
  -webkit-animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}


/* Login Page 15/08/2024 */
.error{
  color:red;
}
.non_register_user_error{
  color:red;
  text-align: center;
}
.success{
  color:green;
}
.error_register{
  color:red;
}
.success_register{
  color:green;
}
.fullname_error{
  display: none;
  margin-left: 3%;
  color: red;
}
.email_error {
  display: none;
  margin-left: 3%;
  color: red;
}
.mobile_error{
  display: none;
  margin-left: 3%;
  color: red;
}