*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    background-color: #0e0e10;
    color: #efeff1;
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.ne-login {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
}

.ne-login__card {
    background: #18181b;
    border: 1px solid #26262c;
    border-radius: 12px;
    padding: 40px 48px;
    width: 100%;
    max-width: 440px;
    text-align: center;
}

.ne-login__logo {
    font-size: 28px;
    font-weight: 700;
    color: #efeff1;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.ne-login__logo span {
    color: #9146ff;
}

.ne-login__tagline {
    color: #adadb8;
    font-size: 14px;
    margin-bottom: 32px;
}

.ne-login__error {
    background: rgba(255, 68, 68, 0.12);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 8px;
    color: #ff7070;
    font-size: 14px;
    padding: 12px 16px;
    margin-bottom: 24px;
    text-align: left;
}

.ne-login__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: #9146ff;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 14px 24px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s ease, box-shadow 0.15s ease;
}

.ne-login__btn:hover,
.ne-login__btn:focus {
    background: #772ce8;
    box-shadow: 0 0 0 3px rgba(145, 70, 255, 0.35);
    outline: none;
    color: #fff;
    text-decoration: none;
}

.ne-login__btn svg {
    flex-shrink: 0;
}

.ne-login__divider {
    border: none;
    border-top: 1px solid #26262c;
    margin: 28px 0;
}

.ne-login__footer {
    font-size: 13px;
    color: #adadb8;
}

.ne-login__footer a {
    color: #a970ff;
    text-decoration: none;
}

.ne-login__footer a:hover {
    text-decoration: underline;
}

.ne-login__footer p + p {
    margin-top: 6px;
}
