body {
    text-align: center;
    background-color: #F6F6F6;
    display: flex;
    justify-content: center;
}

h1 {
    font-family: 'Monotype Corsiva';
    font-size: 4rem;
    color: #EB5A61;
    margin-top: 0;
}

h1.register {
    font-family: 'Monotype Corsiva';
    font-size: 3rem;
    color: #EB5A61;
}

h2 {
    font-family: 'U8';
    font-size: 1.5rem;
    font-weight: normal;
    margin-top: -3rem;
}

form {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

div.containerRegister form fieldset div label {
  display: flex;
  justify-content: flex-start;
  left: 1rem;
  position: relative;
}

#confirmPassword {
 outline: 0;
}

/* #cPasswordLabel {
  display: none;
} */

/* div.containerRegister form fieldset div input:focus {
  background: red;
  outline: 0;
} */

fieldset {
    border: none;
}

div.welcome {
    width: 16rem;
    margin: 0 auto;
}

div.formpjes {
  padding: 1em;
}

input, #submitButton {
    padding: 0.7rem;
    border: 2px solid #EB5A61;
    border-radius: 0.5rem;
    width: 15rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
}

#submitButton {
  padding: 1em;
}

button:disabled {
  background-color: #7f8c8d!important;
}

.containerRegister input, .containerRegister #submitButton {
  margin-top: 10px;
}

input::placeholder, #submitButton::placeholder {
    color: black;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
}

/* input:invalid {
  border-color: blue;
}

input:required:valid {
  border-color: chartreuse;
}

input:required:focus:valid {
  border-color: chartreuse;
}

input:required {
  border-color: yellow;
} */

input#checkbox {
    width: auto;
}

button#submitButton {
    background-color: #EB5A61;
    color: white;
    border: none;
    width: 100%;
}

img {
    width: 11rem;
}

a {
    color: #EB5A61;
    text-decoration: none;
}

/* 
Roze/ Rood: #EB5A61
Rood: #D7131D 
*/

/* Customize the label (the container) */
label.container {
  width: 269px;
  display: block;
  position: relative;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.rememberMe {
  display: flex;
  justify-content: center;
}

/* Hide the browser's default checkbox */
label.container input.checkmark {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

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

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

/* When the checkbox is checked, add a blue background */
label.container input.checkmark:checked ~ .checkmark {
  background-color: #EB5A61;
}

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

/* Show the checkmark when checked */
label.container input.checkmark:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
label.container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}