#agree-terms-checkbox-container {
  font-size: 14px;
  margin-left: 10px;
}

#agree-terms-checkbox-container {
  width: 95%;
}
.container {
  /* background-color: #f2efee; */
  min-width: 390px;
}
#sub-container {
  min-width: 200px;
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  font-family: Montserrat;
  color: rgba(90, 88, 88, 1);
}

#sub-container .panel-default {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

#sub-container .margin-bottom {
  margin-bottom: 20px;
}
#sub-container a {
  text-decoration: none;
}
.register-column {
  width: 45%;
}
input[type=checkbox]::after {
  position: absolute;
  top: 0;
  background-color: white;
  color: #F37126;
  width: 18px;
  height: 18px;
  line-height: 18px;
  display: inline-block;
  visibility: visible;
  padding-left: 0px;
  text-align: center;
  content: ' ';
  border-radius: 3px;
  border: 2px solid #F37126;
  cursor: pointer;
}

/* Insert a check mark of Unicode hex code via "after" pseudo element when checkbox checked*/
input[type=checkbox]:checked::after {
  content: "\2713";
  font-size: 16px;
  font-weight: bold;
}

.text-have-account {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  margin:12px;
}

.register-mobile {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#agree-terms-checkbox-container {
  font-size: 17px;
}

.box-orange {
  font-size: 16px;
  background-color: #FFF;
  color: #F37126 !important;
  padding: 0 20px;
  width: auto;
  height: auto;
  line-height: 30px;
  border-radius: 7px;
  border: 1px solid #F37126;
  display: inline-block;
  font-weight: 600;
}

@media only screen and (max-width:768px) {

  .box-orange{
    /* font-size: 15px; */
    height: auto !important;
    padding: 0 !important;
  }

  h2.red-heading-login {
    font-size: 15px;
  }
  .text-have-account p {
    font-size: 13px;
  }
}

.border-orange {
  border: 1px solid #F37126;
}