*{
    margin: 0;
    padding: 0;
}

body {
  overflow-x: hidden !important;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 14px;
  background: #f2f2f2;
}

/* Register Form */

.register_form_parent{
  width: 100vw;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f2f2f2;
}

@media(min-width: 768px){
  .register_card_div{
    width: 50%;
    height: fit-content;
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 5px;
  }
}
@media(max-width: 768px){
  .register_card_div{
    width: 100%;
    height: fit-content;
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 5px;
  }
}

.form_input_div{
  width: 100%;
  height: fit-content;
}