﻿/* ---------------------------------------------------------
   Login Page
   --------------------------------------------------------- */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nuek-jet-black);
}

.login-container {
    width: 100%;
    max-width: 420px;
    padding: 24px;
}

.login-card {
    padding: 40px 36px;
}

.login-logo {
    margin-bottom: 32px;
}

    .login-logo img {
        width: 100%;
        opacity: 0.7;
    }

.login-title {
    font-size: 28px;
    margin-bottom: 4px;
}

.login-subtitle {
    margin-bottom: 28px;
    opacity: 0.7;
}

.login-btn {
    width: 100%;
    margin-top: 8px;
}

.login-footer {
    text-align: center;
    margin-top: 24px;
    font-size: var(--nuek-small);
    color: var(--nuek-grey-4);
}

.login-error-box:not(:empty) {
    background: rgba(220, 53, 69, 0.12);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #f87171;
}

.login-error-box:empty {
    display: none;
}

.login-error-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.login-error-box li {
    margin: 0;
}

.login-logo-brand {
    position: fixed;
    right: 0px;
    bottom: 0px;
    z-index: 1000;
}

    .login-logo-brand img {
        height: 10vh;
        width: auto;
        filter: invert(1);
        opacity: 0.3;
    }