body {
    background-image: url("/ADL/Images/Background.png");
}
.logo {
    display: block;
    margin-left: 690px;
    margin-right: auto; 
}

.titel {
    border-style: solid;
    border-width: thin;
    border-color: white;
    height: 100px;
    width: 1499px;
    position: relative;
    left: 190px;
    top: 10px;
    background-color:rgba(0, 0, 0, 0.5);
}

.titel-registratie {
    font-family: "Arial";
    color: white;
    font-size: 50px;
    text-align: center;
    position: relative;
    top: -25px;
}

.signup {
    border-style: solid;
    border-width: thin;
    border-color: white;
    height: 550px;
    width: 1499px;
    position: relative;
    top: 9px;
    left: 190px;
    background-color:rgba(0, 0, 0, 0.5);
    color: white;
    font-family: arial;
}

[class$="label"] {
    position: relative;
    left: 600px;
    width: 250px; 
    font-size: 20px;
}

[class$="input"] {
    position: relative;
    height: 25px;
    width: 290px;
    font-size: 16px;
    padding-left: 5px;
}

[class^="firstname-"] {
/*    top: 40px;  */
    left: 531px;
}

[class^="lastname-"] {
/*    top: 35px;   */
    left: 509px;
}

[class^="id-"] {
/*    top: 50px;   */
    left: 558px;
}

[class^="email-"] {
/*    top: 55px;   */
    left: 566px;
}

[class^="password-"] {
/*    top: 70px;  */
    left: 533px;
}

[class^="passwordrepeat-"] {
/*    top: 65px;  */
    left: 459px;
}

[class^="activation-code-"] {
/*    top: 80px;   */
    left: 480px;
}

.activation-code-label {
    color: yellow;
}

.password-label {
    color: yellow;
}

.passwordrepeat-label {
    color: yellow;
}

.activation-code-input {
    color: red;
}

.signup-button {
    width: 180px;
    height: 40px;
    position: relative;
    left: 630px;
    top: 20px;
    font-size: 20px;
}

.login-button {
    width: 180px;
    height: 40px;
    position: relative;
    left: 630px;
    top: 1px;
    font-size: 20px;
}

p {
    text-align: center;
    top: 600px;
}

error-message {
    text-align: center;
    border: 1px solid white;
}
.fout-melding {
    color: red;
    font-size: 25px;
}
.error-border-red {
    border-color: red;
}

.signupsuccess {
    color: green;
    font-size: 25px;
    font-weight: bold;
    width: 30%;
    position: relative;
}

.comment {
    color: yellow;
    font-size: 25px;
}




/*   NAVBAR    -----------------------------------------------------------  */
/* Style the navigation menu */
.navbar {
    width: 78.75%;
    background-color: #555;
    overflow: auto;
    position: relative;
    top: 10px;
    left: 190px;
}
/* Navigation links */
.navbar a {
    position: relative;
    float: left;
    padding: 12px;
    color: #666;
    text-decoration: none;
    font-size: 20px;
    width: 17.86%; /* Four equal-width links. If you have two links, use 50%, and 33.33% for three links, etc.. */
    text-align: center; /* If you want the text to be centered */
    padding: 15px;   /* Since block elements take up the full width available, they cannot float next to each other. Therefore, specify some padding to make them look good */
    border: 1px solid #bbb;
    background-color: #f3f3f3;
}
/* Add a gray right border to all list items, except the last item (last-child) */
navbar:last-child {
    border-right: none;
}
/* Add a background color on mouse-over */
.navbar a:hover {
    background-color: lightgray;  /* Change the link color to #111 (black) on hover */
    color: white;
}
/* Style the current/active link */
.navbar a.active {
    background-color: green;
    color: white;
}