.input-wrapper {
  position: relative;
}

.input-pass-preview {
  padding: 15px;
  z-index: 100;
  top: 0;
  right: 8px;
  position: absolute;
  cursor: pointer;
  color: #fff;
}

#register-form-container {
  background-color: #000000fc;
}
#passwordError{
  color: red;
}
#mainContent, #mainWrapper {
  min-height: 500px;
  width: 100%;
  float: left;
}

#register-stepbar-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-color: rgb(29, 28, 28);
  font-size: 0.9rem;
}

#register-stepbar-container>div {
  padding: 15px;
  color: #fff;
}

.fa-asterisk {
  color: red;
}

#register-form-container {
  display: flex;
  /* grid-template-columns: repeat(2,1fr); */
  justify-content: center;
}

#register-form-details, #register-form-account {
  margin: 5px 15px;
}

.register-agree-label {
  color: #fff;
  font-size: 12px;
}

.input-label {
  display: flex;
  align-items: center;
  font-size: 15px;
}

.register-form-title {
  color: #fff;
  border-bottom: 4px solid #fff;
  padding: 10px;
  min-height: 32px;
  font-size: 1.3rem;
}

.register-form-wrapper {
  padding: 5px 10px;
}

.select-style {
  width: 100%;
  border-radius: 3px;
  overflow: hidden;
  background: #272727 url(/images/header/select-arrowdown.png) no-repeat 95% 50%;
  background-size: 17px;
  border: 1px solid #d1d1d1;
  border-radius: 50px;
  border: none;
}

.select-style  select{
  color: #fff;
  padding: 13px 20px;
}
.select-style  select option{
  color: #fff;
  background-color: #272727;
}

.account_btn {
  color: #fff;
  transition: color 0.25s 0.0833333333s;
  position: relative;
  height: 40px;
  background-color: #b29364;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  line-height: 41px;
  cursor: pointer;
  border-radius: 15px;
  border: none;
  padding: 10px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px auto;
}

.account_btn::before, .account_btn::after {
  border: 0 solid transparent;
  box-sizing: border-box;
  content: "";
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  bottom: 0;
  right: 0;
}

.account_btn::before {
  border-bottom-width: 2px;
  border-left-width: 2px;
}

.account_btn::after {
  border-top-width: 2px;
  border-right-width: 2px;
}

/* .account_btn:hover {
  color: #fe7b8f;
}
.account_btn:hover::before, .account_btn:hover::after {
  border-color: #fe7b8f;
  transition: border-color 0s, width 0.25s, height 0.25s;
  width: 100%;
  height: 100%;
} */
.account_btn:hover::before {
  transition-delay: 0s, 0s, 0.25s;
}

.account_btn:hover::after {
  transition-delay: 0s, 0.25s, 0s;
}


input[type=text], input[type=password], input[type=email], textarea {
  font-family: inherit !important;
  font-weight: 700 !important;
  font-family: inherit !important;
  font-weight: 700 !important;
  width: 100%;
  border-radius: 50px;
  background-color: #272727;
  color: #ebebeb;
  border: none;
  padding: 13px 20px;
  font-size: 14px;
  
}

@media (max-width: 1050px) {
  #register-form-details, #register-form-account {
    margin: 0px;
  }

  #register-form-container {
    display: flex;
    flex-direction: column;
  }

  .register-form-wrapper {
    text-align: center;
  }
}

/* Bigger Checkbox */
input[type=checkbox] {
  margin: 15px 5px 11px 5px;
  line-height: normal;
  width: 25px;
  height: 25px;
}