@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
    --accent: #7A2638;
    --gold-fixed: #e8c468;
}

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

body.nm-login {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(180deg, #1c1c1a 0%, #2c2620 100%);
    color: #e6ddd0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
}

.nm-login-container {
    width: 100%;
    max-width: 360px;
    text-align: center;
}

.nm-login-brand { margin-bottom: 36px; }
.nm-login-crest {
    display: block;
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    object-fit: contain;
}
.nm-login-brand h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--gold-fixed);
    margin-bottom: 4px;
}
.nm-login-brand span {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(232,196,104,0.65);
    font-weight: 500;
}

.nm-login-error {
    background: rgba(192,57,43,0.18);
    border: 1px solid rgba(192,57,43,0.4);
    color: #ffd5d0;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 13px;
}

.nm-login form { display: flex; flex-direction: column; gap: 10px; }
.nm-login input[type=password] {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    font-family: inherit;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    -webkit-text-fill-color: #fff;
}
.nm-login input[type=password]::placeholder { color: rgba(255,255,255,0.4); }
.nm-login input[type=password]:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(122,38,56,0.25);
}
.nm-login button {
    padding: 14px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s;
    font-family: inherit;
    min-height: 48px;
}
.nm-login button:hover { background: #922b3d; }

.nm-login-tagline {
    margin-top: 28px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 14px;
    color: rgba(232,221,208,0.5);
}
