body {
  background-color: #101924 !important;
  background-image: url('/images/registro/background-registro.jpg');
  background-repeat: no-repeat;
  background-position: center;
}

.web-view{
  max-width: 500px;
}

.btn-register {
  background-color: #AF8A11!important;
  color: white!important;
  display: block;
}

.container {
  padding: 20px;
}

.lblTitle {
  font-weight: bold;
  cursor: inherit;
  font-size: 35px;
  color: white;
}

.lblBienvenida {
  font-weight:bold;
  font-size: 50px;
  color: white;
}

.lblTituloPaso {
  font-weight:bold;
  font-size: 20px;
  color: white;
}

.lblPasoActivo {
  font-size: 16px;
  color: #BDBDBD;
}

.c-evl{
  color: #AF8A11!important;
}

.custom-check {
  display: block;
  font-size: 12px;
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

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

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

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

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

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

/* Style the checkmark/indicator */
.custom-check .checkmark:after {
  left: 8px;
  top: 4px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}