body {
    font-family: Arial, sans-serif;
    background: linear-gradient(180deg, #30242f 0%, #30242f 30%, #262626 70%, #262626 100%);
    color: #fff;
    padding: 0;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-container {
    background-color: #2d1b2f;
    border-radius: 10px;
    padding: 30px;
    max-width: 420px; /* Aangepast voor betere positionering */
    width: 100%;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin-bottom: 175px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: #fff;
    font-weight: bold;
}

.auth-logo {
    display: block;
    margin: 0 auto 20px;
    max-width: 300px;
    width: 100%;
    height: auto;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
    width: 100%; /* Zorgt ervoor dat de form-group de volledige breedte gebruikt */
    display: flex;
    flex-direction: column;
    align-items: center; /* Dit zorgt ervoor dat de velden gecentreerd worden */
}

label {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
}

input[type="email"],
input[type="password"],
input[type="text"],
button[type="submit"] {
    width: 100%; /* Zorgt ervoor dat de invoervelden de volledige breedte gebruiken binnen hun container */
    max-width: 350px; /* Maakt de invoervelden een beetje smaller dan de volledige breedte */
    padding: 10px;
    margin: 0 auto 15px auto; /* Dit zorgt ervoor dat de velden in het midden staan */
    border-radius: 8px;
    border: 1px solid #4e4e4e;
    background-color: #fff;
    color: #000000;
    font-size: 16px;
    box-sizing: border-box;
}
button[type="submit"] {
    width: 100%; /* Zorgt ervoor dat de invoervelden de volledige breedte gebruiken binnen hun container */
    max-width: 350px; /* Maakt de invoervelden een beetje smaller dan de volledige breedte */
    padding: 10px;
    margin: 0 auto 15px auto; /* Dit zorgt ervoor dat de velden in het midden staan */
    border-radius: 8px;
    border: 1px solid #4e4e4e;
    background-color: #4CAF50;
    color: #fff;
    font-size: 16px;
    box-sizing: border-box;
}

input[type="submit"] {
    width: calc(100% - 20px);  /* Zelfde breedteaanpassing voor de button */
    padding: 14px;
    background-color: #4CAF50;
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    font-size: 16px;
    box-sizing: border-box;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

.error {
    color: red;
    font-size: 14px;
}

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

a:hover {
    color: #ffffff;
}

p {
    text-align: center;
    color: #ddd;
}

button[type="submit"]:hover {
    background-color: #45a049;
}

h3 {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
}

.container {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    background: #2e2045;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
