input, select, textarea {
    padding: 8px 15px;
    margin: 0px !important;
}
.check_container {
    position: relative;
    margin-right: 20px;
    padding-left: 24px;
}

/* Hide the browser's default checkbox */
.check_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.check_container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.check_container input:checked ~ .checkmark {
  background-color: #EBF70F;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.check_container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.check_container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
button.btn.send-otp {
    background-color: #EBF70F;
    color: white;
    border-radius: 20px;
}
button.btn.send-otp:hover {
    background: transparent !important;
    border-color: #EBF70F;
    color: #EBF70F !important;
}
p.verify-phone-message {
    color: green;
    text-align: left;
    font-size: 15px;
}
.form-group.error-message {
    text-align: left;
    font-size: 13px;
}

a.verify-phone {
    color: white;
}
a.feedback-verify-phone {
    color: white;
}
    label.error {
    color: red;
}

.loader-div {
    display: none;
    position: fixed;
    margin: 0px;
    padding: 0px;
    right: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 30001;
    opacity: 0.8;
}
.loader-img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.suc-msg{
    background-color: green;
    padding: 10px;
    color: white;
}
.err-msg{
    background-color: rgb(158, 31, 31);
    padding: 10px;
    color: white;
}

a.btn.btn-medium.btn-rounded.btn-pink.nav-button {
  margin-bottom: 10px;
}