/* Algemene wrapper */
.sk-login-wrapper {
    max-width: 420px;
    margin: 60px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Logo */
.sk-login-logo {
    text-align: center;
    margin-bottom: 25px;
}

.sk-login-logo img {
    max-width: 160px;
    height: auto;
}

/* Content */
.sk-login-content h1 {
    font-size: 22px;
    margin-bottom: 15px;
    text-align: center;
}

.sk-login-content p {
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
}

/* Formulier */
.sk-login-form form {
    margin-top: 20px;
}

.sk-login-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.sk-login-form input[type="text"],
.sk-login-form input[type="email"],
.sk-login-form input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 15px;
}

.sk-login-form button {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
}

/* Meldingen */
.sk-login-message {
    text-align: center;
    padding: 10px 0;
}

.sk-login-error h1 {
    color: #c00;
}

/* Success / Error wrappers */
.sk-login-wrapper.success {
    border-left: 4px solid #2e7d32;
}
.sk-login-wrapper.error {
    border-left: 4px solid #c62828;
}

/* Knoppen */
.button-primary {
    display: inline-block;
    padding: 10px 20px;
    background: #0057b8;
    color: #fff !important;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 10px;
}
.button-primary:hover {
    background: #003f82;
}

/* Dashboard widget */
.sk-login-widget p {
    margin: 4px 0;
    font-size: 14px;
}
.sk-login-widget strong {
    color: #333;
}

/* Log status kleuren */
.sk-log-success { color: #2e7d32; font-weight: 600; }
.sk-log-failed  { color: #c62828; font-weight: 600; }
.sk-log-expired { color: #ef6c00; font-weight: 600; }
.sk-log-info    { color: #1565c0; font-weight: 600; }
.sk-log-scan    { color: #757575; font-weight: 600; }

/* SVG icons in log */
.sk-icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 4px;
    opacity: 0.85;
}

/* Active magic-login router UI */
.sk-login-wrapper {
    max-width: 480px;
    border-radius: 12px;
    font-family: system-ui, sans-serif;
    text-align: center;
}

.sk-login-wrapper img.sk-logo {
    max-width: 160px;
    margin-bottom: 20px;
}

.sk-login-wrapper h2 {
    margin-top: 0;
    font-size: 24px;
}

.sk-login-wrapper p {
    font-size: 15px;
    color: #444;
}

.sk-login-notice {
    margin: 16px 0 20px;
    padding: 12px 14px;
    border-radius: 8px;
    background: #edf7ed;
    color: #1e4620;
    font-size: 15px;
}

.sk-login-home-link {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 16px;
    border-radius: 6px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
}

.sk-login-home-link:hover {
    background: #005f8d;
}

.sk-login-row {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.sk-login-row input[type="text"] {
    flex: 1;
    padding: 10px 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.sk-login-row button {
    padding: 10px 16px;
    font-size: 15px;
    background: #0073aa;
    border: none;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
}

.sk-login-row button:hover {
    background: #005f8d;
}

.sk-message-box {
    max-width: 420px;
    margin: 60px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    font-family: system-ui, sans-serif;
    text-align: center;
}

.sk-message-box img.sk-logo {
    max-width: 140px;
    margin-bottom: 20px;
}

.sk-message-title {
    margin-top: 0;
    font-size: 22px;
    color: #000;
}

.sk-message-title.is-error {
    color: #c92a2a;
}

.sk-message-box p {
    font-size: 15px;
    color: #444;
    margin-bottom: 20px;
}

.sk-message-box a.button {
    display: inline-block;
    padding: 10px 18px;
    background: #0073aa;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
}

.sk-message-box a.button:hover {
    background: #005f8d;
}

.sk-view-error {
    color: #c92a2a;
}

@media (max-width: 480px) {
    .sk-login-row {
        flex-direction: column;
    }

    .sk-login-row button {
        width: 100%;
    }
}
