*,*:after,*:before {
  box-sizing: border-box;
}
.login, .register {
  width: 400px;
  background-color: #ffffff;
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  margin: 100px auto;
  border-radius: 25px;
}
.login_button {
    width: 100%; 
    height: 50px; 
    border-radius: 0px 0px 25px 25px;
}
.login h1 {
  text-align: center;
  color: #763C26;
  font-size: 20px;
  padding: 15px 0 15px 0;
  border-bottom: 1px solid #dee0e4;
}
.login .links a {
  color: #adb2ba;
  text-decoration: none;
  display: inline-flex;
  padding: 0 30px 10px 30px;
  font-weight: bold;
}
.login .links a:hover {
  color: #763C26;
}
.login .links a.active {
  border-bottom: 3px solid #763C26;
  color: #763C26;
}
.login form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 20px;
}
.login form label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12%;
  height: 50px;
  background-color: #763C26;
  color: #ffffff;
}

.login form input[type="password"], .login form input[type="text"], .login form input[type="email"] {
  width: 80%;
  height: 50px;
  border: 1px solid #dee0e4;
  margin-bottom: 20px;
  padding: 0 15px;
}


.login form #rememberme {
  width: 100%;
  height: auto;
  padding: 5px 20px;
  background-color: transparent;
  color: #000;
  justify-content: flex-start;
}

.login form #rememberme input {
  transform: scale(1.3);
  margin-right: 7px;
}

.login form .msg, .register form .msg {
  text-align: center;
  padding: 5px 0px 20px 0px;
  width: 100%;
}
button {
    padding: 8px;
    border-radius: 5px; 
    border: none;
    background: #763C26; 
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}
button:hover {
    background: #d2c1a7;
    cursor:pointer;
}
.d-flex{
    border: 0px solid brown;
    margin: auto;
}
.p-2 {
    border: 0px solid pink;
    text-align: center;
    height: 25px;
}
.hoofdregel{
   border-bottom: solid 1px brown;
}
.inhoud{
   display: inline-block; 
   text-align: center;
}
.pointer{
    cursor: pointer !important;
}
.dropdownregel{
    display: flex !important;
}
.dropdownleft{
    width: 50%; 
    text-align: right; 
    margin-right: 5px;
}
.dropdownright{
    width: 50%; 
    text-align: left; 
    margin-left: 5px;
}