html{
    overflow: hidden;
}
body{
    background-color: #222222;
    color: #D9D9D9;
    font-family: 'Source Sans Pro';font-size: 14px;
    overflow: visible;
}
.login-container {
    width: 400px;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.login-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D9D9D9;
    margin-bottom: 20px;
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.login-input {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 10px 0;
    background-color: #222222;
    color: #D9D9D9;
    border: 1px solid #444444;
    border-radius: 5px;
    font-size: 1rem;
}

.login-input:focus {
    border-color: #006CFF;
    outline: none;
}

.login-button {
    background-color: #006CFF;
    color: #D9D9D9;
    font-size: 1rem;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    font-weight: bold;
    width: 100%;
}

.login-button:hover {
    background-color: #0056CC;
}

.login-footer {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #D9D9D9;
}

.login-footer a {
    color: #006CFF;
    text-decoration: none;
}

.login-footer a:hover {
    text-decoration: underline;
}
.error-message {
    color: #FF0000;
    margin-top: 10px;
    display: none; /* Alleen tonen bij fout */
}
.pexi{
    position: fixed;
    bottom: -150px;
    right: -150px;
    width: 661px;
    height: 661px;
   z-index:-1;
  }