﻿body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background: url('/images/background.jpg') no-repeat center center fixed;
    background-size: cover;
}

.login-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    width: 300px;
}

    .login-box h2 {
        margin-bottom: 20px;
        text-align: center;
    }

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

.btn-login {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

    .btn-login:hover {
        background-color: #0056b3;
    }

.forgot {
    margin-top: 10px;
    text-align: center;
}

    .forgot a {
        font-size: 0.9em;
        color: #007bff;
        text-decoration: none;
    }

.lang-switch {
    top: 20px;
    right: 20px;
}

    .lang-switch a {
        text-decoration: none;
        cursor: pointer;
    }


.login-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Tilpas layout på små skærme */
@media (max-width: 768px) {
    .login-box, .right-box {
        width: 100%;
        min-height: auto;
    }

    .login-wrapper {
        flex-direction: column; /* stack i stedet for side om side */
    }
}

.login-box, .right-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    width: 320px;
    min-height: 320px;
}

.right-box {
    /* Tom for nu – men klar til indhold */
}