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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f5f5f5; /* lys baggrund som på login-siden */
}

/* FORM BOKS */
.wrapper {
    width: 420px;
    background: white; /* FIX: ikke transparent */
    color: #333; /* mørk tekst */
    border-radius: 16px;
    padding: 40px 45px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1); /* blød skygge */
}

/* OVERSKRIFT */
#Overskrift {
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

/* INPUT BOXE */
.input-box {
    width: 100%;
    margin-bottom: 18px;
}

.input-box input {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #ccc; /* lys grå border */
    background-color: #fafafa;
    outline: none;
    transition: 0.2s ease;
    color: #333;
}

.input-box input:focus {
    border-color: #888;
    background-color: white;
}

.input-box input::placeholder {
    color: #777;
}

/* KNAP */
button {
    width: 100%;
    height: 45px;
    cursor: pointer;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    margin-top: 10px;
    transition: background-color 0.2s ease;
}

button:hover {
    background-color: #005fcc;
}