* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #2442AD;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* MAIN BOX */
.box {
    width: 380px;
    padding: 30px;
    border-radius: 12px;

    /* licht blauw transparant */
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);

    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

/* TITLE */
h1 {
    text-align: center;
    margin-bottom: 20px;
    color: white;
}

/* LABELS */
label {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

/* INPUTS */
input,
select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;

    border: none;
    border-radius: 6px;

    outline: none;
    background: rgba(255,255,255,0.9);
}

/* BUTTON (ORANJE THEMA) */
button {
    width: 100%;
    margin-top: 18px;
    padding: 12px;

    background: #FA9D07;
    color: white;

    border: none;
    border-radius: 6px;

    cursor: pointer;
    font-weight: bold;

    transition: 0.3s;
}

button:hover {
    background: #db8f00;
}

/* ERRORS */
.errors {
    margin-top: 15px;
    background: rgba(231, 76, 60, 0.2);
    padding: 10px;
    border-radius: 6px;
    color: #ff6b6b;
    font-size: 13px;
}

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

.link a {
    color: #FA9D07;
    text-decoration: none;
    font-weight: bold;
}

.link a:hover {
    text-decoration: underline;
}* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #2442AD;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* MAIN BOX */
.box {
    width: 380px;
    padding: 30px;
    border-radius: 12px;

    /* licht blauw transparant */
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);

    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

/* TITLE */
h1 {
    text-align: center;
    margin-bottom: 20px;
    color: white;
}

/* LABELS */
label {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

/* INPUTS */
input,
select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;

    border: none;
    border-radius: 6px;

    outline: none;
    background: rgba(255,255,255,0.9);
}

/* BUTTON (ORANJE THEMA) */
button {
    width: 100%;
    margin-top: 18px;
    padding: 12px;

    background: #FA9D07;
    color: white;

    border: none;
    border-radius: 6px;

    cursor: pointer;
    font-weight: bold;

    transition: 0.3s;
}

button:hover {
    background: #db8f00;
}

/* ERRORS */
.errors {
    margin-top: 15px;
    background: rgba(231, 76, 60, 0.2);
    padding: 10px;
    border-radius: 6px;
    color: #ff6b6b;
    font-size: 13px;
}

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

.link a {
    color: #FA9D07;
    text-decoration: none;
    font-weight: bold;
}

.link a: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);
}