html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    background: #0f1115;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    background: #0f1115;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f1115;
    padding: 20px;
}

.login-card {
    width: 100%;
    max-width: 420px;
    background: #171a21;
    padding: 30px;
    border-radius: 18px;
}

.login-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.login-subtitle {
    opacity: 0.7;
    margin-bottom: 24px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.login-input {
    height: 46px;
    border: none;
    border-radius: 12px;
    padding: 0 14px;
    background: #0f1115;
    color: white;
    width: 100%;
}

.login-button {
    height: 46px;
    border: none;
    border-radius: 12px;
    background: #2d6df6;
    color: white;
    font-weight: 700;
    cursor: pointer;
}

.login-error {
    color: #ff7b7b;
    font-size: 14px;
}

.status-header {
    margin-bottom: 30px;
}

.status-title {
    font-size: 32px;
    font-weight: 700;
}

.status-global {
    margin-top: 6px;
    font-size: 16px;
}

.status-group {
    margin-bottom: 24px;
    background: #171a21;
    border-radius: 18px;
    padding: 20px;
}

.status-group-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

    .status-item:last-child {
        border-bottom: none;
    }

.status-name {
    font-weight: 600;
}

.status-desc {
    font-size: 13px;
    opacity: 0.6;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

/* Colors */
.green {
    background: rgba(0,255,100,0.15);
    color: #00ff9c;
}

.orange {
    background: rgba(255,165,0,0.15);
    color: orange;
}

.red {
    background: rgba(255,60,60,0.15);
    color: #ff5c5c;
}

.gray {
    background: rgba(255,255,255,0.1);
    color: #aaa;
}

.nav-item {
    color: white;
    text-decoration: none;
    opacity: 0.7;
}

    .nav-item.active {
        opacity: 1;
        font-weight: 700;
    }

.nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-item {
    color: white;
    text-decoration: none;
    opacity: 0.6;
    padding: 10px 12px;
    border-radius: 10px;
    transition: all 0.2s ease;
    font-size: 14px;
}

    /* Hover */
    .nav-item:hover {
        opacity: 1;
        background: rgba(255,255,255,0.05);
    }

    /* Active page */
    .nav-item.active {
        opacity: 1;
        background: rgba(45,109,246,0.2);
        color: #2d6df6;
        font-weight: 600;
    }

    /* Logout button */
    .nav-item.logout {
        background: none;
        border: none;
        text-align: left;
        cursor: pointer;
    }

    .nav-item.active {
        background: linear-gradient( 90deg, rgba(45,109,246,0.25), rgba(45,109,246,0.05) );
    }

.login-button-register {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .login-button-register:hover {
        border-color: rgba(255,255,255,0.4);
        color: #ffffff;
        background: rgba(255,255,255,0.05);
    }

    .login-button-register:active {
        transform: scale(0.98);
    }

.login-subtitle {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 20px;
}

.login-error {
    background: rgba(255, 80, 80, 0.1);
    border: 1px solid rgba(255, 80, 80, 0.3);
    color: #ff6b6b;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 13px;
}

.login-success {
    background: rgba(80, 255, 150, 0.1);
    border: 1px solid rgba(80, 255, 150, 0.3);
    color: #4cffb0;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 13px;
}

.login-button:disabled,
.login-button-secondary:disabled,
.login-button-register:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.login-button-register:hover {
    border-color: #3fa9f5;
    color: #3fa9f5;
}

.login-page-shell {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    background: #0f1115; /* jouw donkere Telvi style */
}

.login-card {
    width: 100%;
    max-width: 400px;
    background: #171a21;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.login-button-secondary {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .login-button-secondary:hover {
        border-color: rgba(255,255,255,0.35);
        color: #ffffff;
        background: rgba(255,255,255,0.05);
    }

    .login-button-secondary:active {
        transform: scale(0.98);
    }

.login-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.verify-status {
    font-size: 13px;
    margin-bottom: 15px;
}

    .verify-status span {
        display: block;
        margin-top: 4px;
    }

.verify-ok {
    color: #4cffb0;
}

.verify-pending {
    color: rgba(255,255,255,0.5);
}

.login-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.login-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.login-logo-main {
    height: 70px;
}

.login-logo-sub {
    height: 45px;
    filter: invert(1);
}