/****** Registration Kurs Specific *********/
/****** Aditional Styles *********/

#registration_container {
  background-color: var(--gray);
}

@media (max-width: 575.98px) {
  .responsive-form-inner.container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
  }
}


.form-control {
  /* overwrite the form-control from bootstrap */
  border: 1px solid white !important;
  /* Set initial transparent border */
  border-radius: 0px !important;
}

.form-control:focus {
  /* overwrite the form-control from bootstrap */
  border: var(--black) 1px solid !important;
  box-shadow: none !important;
  /* Remove box shadow on focus */
}

.checkbox_label {
  display: block;
  padding-left: 20px;
  position: relative;
}

.checkbox_label a {
  font-size: 16px;
  text-decoration: underline;
}

.checkbox_label input[type="checkbox"] {
  position: absolute;
  left: 0;
  top: 5px;
}

.span_bold {
  font-family: SoletoTK_W_Md;
  font-size: 15.5px;
}

.registration_button_img {
  float: right;
  height: 16px;
  /* width: auto; */
}

.registration_button {
  width: fit-content;
  min-width: 150px;
  border: 1px solid black !important;
  border-radius: 0% !important;
  background-color: transparent;
  height: 40px;
}

.hovermode .button_span {
  position: relative;
  /* padding-bottom: 2px; */
}

.button_span {
  font-size: 18px;
}

.hovermode ::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--black);
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: bottom left;
  transition: transform 0.3s linear;
}

.hovermode:hover ::after {
  transform: scaleX(1);
}

.input_valid {
  visibility: hidden;
  height: 20px;
}

.input_invalid {
  font-size: 16px;
  font-weight: bold !important;
  height: 20px;
  visibility: visible;
  color: var(--red);
}

.alert_invalid {
  border: var(--red) 1px solid !important;
}
input::placeholder {
  color: #8F837C !important;
  font-size: 17px;
}
.alert_label {
  color: var(--red) !important;
}
