.video-form .form-group,
.reg-form .form-group {
  margin-bottom: 15px;
}
.video-form label,
.reg-form label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 400;
}
.video-form .form-control,
.reg-form .form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #444;
  font-weight: 400;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
}
.video-form .form-control:focus,
.reg-form .form-control:focus {
  border-color: #bf1e2e;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgb(121, 12, 64);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgb(121, 12, 64);
}
.video-form .btn,
.reg-form .btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  color: #333;
  background-color: #fff;
  border: 2px solid #bf1e2e;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.video-form .btn:hover,
.reg-form .btn:hover {
  color: #fff;
  background-color: #bf1e2e;
  border-color: #bf1e2e;
}

/* Custom labels: the container */
.video-form .checkcontainer,
.reg-form .checkcontainer {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 17px;
  -webkit-user-select: none; /* Chrome, Opera, Safari */
  -moz-user-select: none; /* Firefox 2+ */
  -ms-user-select: none; /* IE 10+ */
  user-select: none; /* Standard syntax */
}

/* Hide the browser's default checkbox */
.video-form .checkcontainer input,
.reg-form .checkcontainer input {
  position: absolute;
  opacity: 0;
cursor: pointer;}

/* Create a custom checkbox */
.video-form .checkmark,
.reg-form .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #ccc;
}

/* On mouse-over, add a grey background color */
.video-form .checkcontainer:hover input ~ .checkmark,
.reg-form .checkcontainer:hover input ~ .checkmark {
  background-color: #444;
}

/* When the checkbox is checked, add a blue background */
.video-form .checkcontainer input:checked ~ .checkmark,
.reg-form .checkcontainer input:checked ~ .checkmark {
  background-color: #bf1e2e;
}

/* Create the checkmark/indicator (hidden when not checked) */
.video-form .checkmark:after,
.reg-form .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.video-form .checkcontainer input:checked ~ .checkmark:after,
.reg-form .checkcontainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.video-form .checkcontainer .checkmark:after,
.reg-form .checkcontainer .checkmark:after {
  left: 10px;
  top: 6px;
  width: 7px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* Create a custom radio button */
.video-form .radiobtn,
.reg-form .radiobtn{
position: absolute;
top: 0;
left: 0;
height: 25px;
width: 25px;
background-color: #eee;
border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.video-form .checkcontainer:hover input ~ .radiobtn,
.reg-form .checkcontainer:hover input ~ .radiobtn{
background-color: #444;
}

/* When the radio button is checked, add a blue background */
.video-form .checkcontainer input:checked ~ .radiobtn,
.reg-form .checkcontainer input:checked ~ .radiobtn{
background-color: #bf1e2e;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.video-form .radiobtn:after,
.reg-form .radiobtn:after {
content: "";
position: absolute;
display: none;
}

/* Show the indicator (dot/circle) when checked */
.video-form .checkcontainer input:checked ~ .radiobtn:after,
.reg-form .checkcontainer input:checked ~ .radiobtn:after {
display: block;
}

/* Style the indicator (dot/circle) */
.video-form .checkcontainer .radiobtn:after,
.reg-form .checkcontainer .radiobtn:after {
top: 9px;
left: 9px;
width: 8px;
height: 8px;
border-radius: 50%;
background: white;
}