       :root {
            --primary-blue: #009BDA;
            --primary-blue-hover: #008ac2;
            --bg-overlay: rgba(255, 255, 255, 0.96);
            --border-color: #ccc;
            --text-color: #333;
            --font-family: 'Red Hat Display', sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        body {
            font-family: var(--font-family);
            //background: url('img/background.jpg') no-repeat center center fixed; /* Sørg for riktig sti */
            background-color: #444; background-image: url( 'login-background5-svg.svg' ); background-repeat: no-repeat; background-size: cover; background-position: center bottom; background-attachment: fixed;
            background-size: cover;
            background-color: #444; /* Fallback */
            color: var(--text-color);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        /* Logo */
        .logo-container {
            margin-bottom: 30px;
            text-align: center;
        }
        .logo-container img {
            max-width: 100%;
            height: auto;
            max-height: 115px;
        }

        /* Hovedboks (Card) */
        .auth-card {
            background-color: var(--bg-overlay);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            width: 100%;
            max-width: 600px; /* Bredere boks for denne siden */
            overflow: hidden;
            border: 1px solid #e1e1e1;
            padding: 30px;
            text-align: center;
        }

        h2 { margin-bottom: 15px; color: var(--primary-blue); font-size: 24px; }
        p { margin-bottom: 20px; line-height: 1.5; font-size: 15px; }

        /* Skjema Elementer */
        .form-group {
            margin-bottom: 20px;
            text-align: left;
        }
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 14px;
        }
        .form-input {
            width: 100%;
            height: 50px;
            padding: 0 15px;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-size: 16px;
            font-family: inherit;
            background: white;
        }
        .form-input:focus {
            border-color: var(--primary-blue);
            outline: none;
        }

        /* Knapper */
        .btn-primary, .btn-secondary {
            width: 100%;
            height: 50px;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s;
            font-family: inherit;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
        }
        .btn-primary {
            background-color: var(--primary-blue);
            color: white;
            margin-top: 10px;
        }
        .btn-primary:hover { background-color: var(--primary-blue-hover); }
        
        .btn-secondary {
            background-color: #646464;
            color: white;
            margin-top: 10px;
        }
        .btn-secondary:hover { background-color: #4a4a4a; }

        /* Grid for knappene nederst (Generer + Oppdater) */
        .button-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-top: 10px;
        }

        /* Linker */
        .back-link {
            display: inline-block;
            margin-top: 20px;
            color: #555;
            text-decoration: none;
            font-size: 14px;
        }
        .back-link:hover { color: var(--primary-blue); text-decoration: underline; }

        /* Meldinger / Alerts */
        .alert-box {
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 6px;
            font-size: 16px;
            text-align: left;
            line-height: 1.4;
        }
        .alert-error { background-color: #ffebee; color: #c62828; border: 1px solid #ffcdd2; }
        .alert-success { background-color: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
        .alert-info { background-color: #e3f2fd; color: #0d47a1; border: 1px solid #bbdefb; font-size: 14px; }

        /* Hjelpetekst */
        .help-text {
            font-size: 13px;
            color: #777;
            margin-top: 5px;
        }

        /* --- Mobil Tilpasning --- */
        @media (max-width: 600px) {
            .auth-card { padding: 20px; }
            .form-input, .btn-primary, .btn-secondary { height: 60px; font-size: 18px; }
            .button-grid { grid-template-columns: 1fr; } /* Stack knapper på mobil */
            .logo-container img { max-height: 80px; }
        }