/* Grundlæggende styling for body */
body {
    /* Sætter font, baggrundsfarve og minimumshøjde for hele siden */
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
}

.login-container {
    /* Centrerer loginboksen og giver den baggrund, padding og skygge */
    background: #fff;
    max-width: 350px;
    margin: 80px auto 0 auto;
    padding: 32px 24px 24px 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-container h2 {
    /* Gør overskriften blå og tilføjer margin under */
    margin-bottom: 24px;
    color: #0058a3;
}

.login-container label {
    /* Justerer labels og tilføjer margin */
    align-self: flex-start;
    margin-bottom: 4px;
    margin-top: 12px;
    color: #333;
}

.login-container input {
    /* Gør inputfelter store og afrundede */
    width: 100%;
    padding: 8px;
    margin-bottom: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.login-container button {
    /* Gør login-knappen stor, blå og afrundet */
    width: 100%;
    padding: 10px;
    background: #0058a3;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 12px;
    transition: background 0.2s;
}

.login-container button:hover {
    /* Mørkere blå ved hover for feedback */
    background: #003d6a;
}

.login-hint {
    /* Viser hjælpetekst i bunden af siden */
    position: fixed;
    bottom: 8vh;
    left: 0;
    width: 100%;
    text-align: center;
    color: #888;
    font-style: italic;
    font-size: 1.1em;
    letter-spacing: 0.01em;
}

.side-image {
    position: fixed;
    top: 10vh;
    width: 18vw;
    max-width: 260px;
    min-width: 120px;
    height: 18vw;
    max-height: 260px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.left-image {
    left: 2vw;
}

.right-image {
    right: 2vw;
}

.side-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    background: #fff;
}

@media (max-width: 900px) {
    .side-image {
        display: none;
    }
}
