:root {
    --auth-orange: #dc4405;
    --auth-green: #1f5b34;
    --auth-text: #ffffff;
    --auth-muted: rgba(255, 255, 255, .78);
    --auth-glass: rgba(255, 255, 255, .14);
    --auth-glass-strong: rgba(255, 255, 255, .18);
    --auth-border: rgba(255, 255, 255, .22);
    --auth-shadow: 0 24px 80px rgba(0, 0, 0, .35);
}

html,
body {
    min-height: 100%;
}

.auth-page,
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    position: relative;
    overflow: hidden;
    color: var(--auth-text);
    background-color: #0b1220;
    background-image: linear-gradient(135deg, rgba(5, 10, 20, .74), rgba(5, 10, 20, .48)), url("https://feyen.nl/wp-content/uploads/Assortiment_koffiemachines.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.auth-shell,
.login-shell {
    width: 100%;
    max-width: 980px;
    display: flex;
    gap: 28px;
    position: relative;
    z-index: 1;
}

.auth-brand,
.login-brand {
    flex: 1.1;
    display: none;
    color: var(--auth-text);
}

.auth-brand-inner,
.login-brand-inner {
    height: 100%;
    border-radius: 22px;
    padding: 28px;
    background: rgba(0, 0, 0, .20);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 20px 80px rgba(0, 0, 0, .28);
}

.auth-brand-logo,
.brand-logo {
    width: 220px;
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 18px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .35));
}

.auth-brand-title,
.brand-title {
    font-size: 30px;
    line-height: 1.15;
    margin: 8px 0 10px;
    font-weight: 700;
    letter-spacing: .2px;
}

.auth-brand-copy,
.brand-sub {
    margin: 0;
    color: var(--auth-muted);
    font-size: 15px;
    line-height: 1.5;
    max-width: 52ch;
}

.auth-card,
.login-card {
    flex: 1;
    border-radius: 22px;
    background: var(--auth-glass);
    border: 1px solid var(--auth-border);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--auth-shadow);
    overflow: hidden;
}

.auth-card-header,
.login-card-header {
    padding: 18px 22px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-mini-logo,
.mini-logo {
    height: 44px;
    width: auto;
    display: block;
    margin: 0 auto;
    opacity: .95;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .25));
}

.auth-card-body,
.login-card-body {
    padding: 18px 22px 22px;
}

.auth-title,
.login-title {
    color: #fff;
    font-weight: 700;
    margin: 10px 0 6px;
    font-size: 22px;
    letter-spacing: .2px;
    text-align: center;
}

.auth-hint,
.login-hint {
    margin: 0 0 18px;
    color: var(--auth-muted);
    font-size: 13px;
    line-height: 1.45;
    text-align: center;
}

.auth-field,
.field {
    margin-bottom: 12px;
}

.auth-field label,
.field label {
    display: block;
    color: var(--auth-muted);
    font-size: 12px;
    margin-bottom: 6px;
}

.auth-input,
.input {
    width: 100%;
    padding: 13px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .20);
    background: rgba(255, 255, 255, .10);
    color: #fff;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, transform .05s ease;
}

.auth-input::placeholder,
.input::placeholder {
    color: rgba(255, 255, 255, .60);
}

.auth-input:focus,
.input:focus {
    border-color: rgba(244, 152, 25, .75);
    box-shadow: 0 0 0 4px rgba(244, 152, 25, .20);
}

.auth-actions,
.row-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 10px 0 14px;
    flex-wrap: wrap;
}

.auth-message,
.msg {
    font-size: 12px;
    margin: 0;
}

.auth-message--error {
    color: #ffb4a4;
}

.auth-message--success {
    color: #c7f7d4;
}

.auth-message--neutral {
    color: rgba(255, 255, 255, .70);
}

.auth-link,
.link {
    color: rgba(255, 255, 255, .86);
    font-size: 12px;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, .35);
}

.auth-link:hover,
.link:hover {
    color: #fff;
    border-bottom-color: rgba(244, 152, 25, .75);
}

.auth-button,
.btn-login {
    width: 100%;
    border: 0;
    border-radius: 14px;
    padding: 12px 14px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    font-size: 12px;
    color: #fff;
    background: var(--auth-orange);
    box-shadow: 0 18px 40px rgba(220, 68, 5, .28);
    cursor: pointer;
    transition: transform .06s ease, filter .2s ease, box-shadow .2s ease;
}

.auth-button:hover,
.btn-login:hover {
    filter: brightness(1.05);
    box-shadow: 0 20px 45px rgba(220, 68, 5, .35);
}

.auth-button:active,
.btn-login:active {
    transform: translateY(1px);
    box-shadow: 0 12px 25px rgba(220, 68, 5, .25);
}

.auth-button--secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 14px;
    padding: 12px 14px;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}

.auth-button--secondary:hover {
    color: #fff;
    background: rgba(255, 255, 255, .18);
}

.auth-footer,
.login-footer {
    padding: 0 22px 22px;
    color: var(--auth-muted);
    font-size: 13px;
    text-align: center;
}

.auth-footer a,
.login-footer a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, .35);
}

.auth-footer a:hover,
.login-footer a:hover {
    border-bottom-color: rgba(244, 152, 25, .75);
}

.auth-checklist {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
}

.auth-checklist li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.auth-checklist li::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-top: 6px;
    border-radius: 999px;
    background: var(--auth-orange);
    flex: 0 0 auto;
}

@media (min-width: 992px) {
    .auth-brand,
    .login-brand {
        display: block;
    }

    .auth-mini-logo,
    .mini-logo {
        display: none;
    }

    .auth-card-header,
    .login-card-header {
        display: none;
    }
}
