/* Standardstil for alle enheter */
body {
    font-size: 1.1em;
    line-height: 1.6;
}

/* Sørg for at tekstinnhold får riktig responsivitet */
.text-content {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Justering for nettbrett */
@media (max-width: 768px) {
    body {
        font-size: 1.2em;
        line-height: 1.7;
    }

    .text-content {
        font-size: 1.2em;
        line-height: 1.7;
    }
}

/* Justering for mobil */
@media (max-width: 480px) {
    body {
        font-size: 1.3em;
        line-height: 1.8;
    }

    .text-content {
        font-size: 1.3em;
        line-height: 2.0;
    }

    /* For å sikre at teksten ikke blir for bred */
    .container {
        padding: 10px;
    }
}

#next-button.disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

.login-page {
    background-image: url('/static/login_background.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    max-width: 400px;
    width: 100%;
}

.btn-les-mer img {
    width: 150px;
    height: auto;
}

