/* ALGEMEEN */
body {
    font-family: Arial, sans-serif;
    background: #2442AD; /* zelfde blauw als home */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    color: white;
}

/* BOX */
.box {
    background: rgba(255,255,255,0.08); /* lichte box */
    padding: 30px;
    border-radius: 10px;
    width: 380px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* TITEL */
h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff; /* blauw accent */
}

/* LABELS */
label {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #ffffff; /* blauw accent */
}

/* INPUTS */
input, select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* KNOPPEN */
button {
    width: 100%;
    margin-top: 15px;
    padding: 10px;
    background: #FA9D07; /* oranje */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

button:hover {
    background: #db8f00; /* donkerder oranje hover */
}

/* ERROR MESSAGES */
.errors {
    margin-top: 15px;
    background: rgba(255, 153, 0, 0.1); /* licht oranje achtergrond */
    padding: 10px;
    border-radius: 5px;
    color: #a10000; /* donker rood voor fout */
    font-size: 13px;
}

/* LINK */
.link {
    text-align: center;
    margin-top: 15px;
}

.link a {
    color: #FA9D07; /* oranje link */
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.link a:hover {
    color: #db8f00; /* donkerder oranje hover */
    text-decoration: underline;
}

.back-btn {
    position: absolute;
    top: 20px;
    left: 20px;

    display: inline-block;
    padding: 10px 18px;

    background: #FA9D07;
    color: white;

    text-decoration: none;
    font-weight: bold;

    border-radius: 6px;

    transition: 0.3s;
}

.back-btn:hover {
    background: #db8f00;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 400px) {
    .box {
        width: 90%;
        padding: 20px;
    }
}