/* =========================================================
   TANKEFABRIKKEN LOGIN
   ========================================================= */

.jre-login-page {
    position: fixed;
    inset: 0;

    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    background: #ffffff;

    z-index: 99999;
}


.jre-login-container {
    width: 100%;
    max-width: 420px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}


/* Logo */

.jre-login-logo {
    display: block;

    width: 351px;
    max-width: 100%;
    height: auto;

    margin: 0;
}


/* Titel */

.jre-login-title {
    margin: 0;

    font-size: 42px;
    line-height: 1.1;

    color: #1f2127;
}


/* Separator */

.jre-login-separator {
    width: 100%;

    margin: 8px 0;

    border: 0;
    border-top: 1px solid #3d3f46;
}


/* Undertitel */

.jre-login-subtitle {
    margin: 0;

    font-size: 16px;
    color: #1f2127;
}


/* Formular */

.jre-login-form {
    width: 70% !important;

    margin-top: 30px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}



/* Input og knap - samme bredde */
.jre-login-input,
.jre-login-button {
    width: 70% !important;
    height: 35px;
    box-sizing: border-box;
}


/* Input */

.jre-login-input {
    padding: 8px 14px;

    font-size: 17px;

    color: #1f2127;
    background: #ffffff;

    border: 1px solid #aaa;
    border-radius: 6px;

    outline: none;
}


/* Knap */

.jre-login-button {
    padding: 0 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 6px;

    background: #3d3f46;
    color: #ffffff;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    transition: background-color 0.2s ease,
                    transform 0.2s ease,
                    box-shadow 0.2s ease;
}

.jre-login-button:hover {
    background-color: #50535c;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
}

/* Fejlbesked */

.jre-login-error {
    margin: 5px 0 0;

    color: #e16141;
    font-size: 15px;
    font-weight: 600;
}



/* Mobil */

@media (max-width: 500px) {

    .jre-login-page {
        padding: 20px;
    }

    .jre-login-title {
        font-size: 34px;
    }

    .jre-login-form {
        margin-top: 24px;
    }
}