/* LESS Document */
/* Farben */
select,
input {
  font-size: 40px;
  padding: 5px 20px;
  border: 1px solid #212b6b;
  background-color: #212b6b;
  color: #ffffff;
  border-radius: 20px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.99);
  -webkit-appearance: none;
  -moz-appearance: none;
}
select {
  background-image: url(../images/icons/select_arrow.png);
  background-position: right;
  background-repeat: no-repeat;
  padding-right: 90px;
}
/*
input[type='text'], textarea{
	background-color: #ffffff;
	color: #000000;
	font-size: 40px;
	padding: 5px 20px;
	border-radius: 25px;
	
}
*/
textarea {
  background-color: #ffffff;
  color: #000000;
  font-size: 40px;
  padding: 5px 20px;
  border-radius: 25px;
}
input[type='submit'] {
  background-color: #f8ac00;
  cursor: pointer;
  font-weight: bold;
}
.wrongInput {
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  padding-top: 15px;
  padding-bottom: 15px;
}
.wrongInputfield {
  background-color: #970002;
  border: 3px solid #fff;
}
/* Customize the label (the container) */
.checkbox_container {
  display: block;
  position: relative;
  padding-left: 55px;
  padding-right: 55px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 40px;
  font-weight: normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  float: left;
}
/* Hide the browser's default checkbox */
.checkbox_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  width: 40px;
  background-color: #f8ac00;
  border-radius: 8px;
  margin-right: 20px;
}
/* On mouse-over, add a grey background color */
.checkbox_container:hover input ~ .checkmark {
  background-color: #f8ac00;
}
/* When the checkbox is checked, add a blue background */
.checkbox_container input:checked ~ .checkmark {
  background-color: #212b6b;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the checkmark when checked */
.checkbox_container input:checked ~ .checkmark:after {
  display: block;
}
/* Style the checkmark/indicator */
.checkbox_container .checkmark:after {
  left: 11px;
  top: 5px;
  width: 8px;
  height: 19px;
  border: solid white;
  border-width: 0 6px 6px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.forgetpw {
  padding: 10px 0px 20px 0px;
}
.forgetpw a {
  font-size: 22px;
  text-decoration: underline;
}
