
* { box-sizing: border-box; margin: 0; padding: 0; }
body { 
    font-family: 'Georgia', 'Times New Roman', serif; 
    background: #F5F3EE; 
    color: #1a1a1a; 
    min-height: 100vh;
}
.login-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.login-header {
    background: #1a1a2e;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.logo-circle {
    width: 48px;
    height: 48px;
    background: #C9A84C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    font-family: 'Georgia', serif;
    flex-shrink: 0;
}
.logo-text h1 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
}
.logo-text p {
    font-size: 0.7rem;
    color: #C9A84C;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.login-hero {
    background: #1a1a2e;
    padding: 2rem 2rem 3rem;
    color: white;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.78rem;
    color: #C9A84C;
    margin-bottom: 1rem;
}
.badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #C9A84C;
    border-radius: 50%;
}
.login-hero h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    font-family: 'Georgia', serif;
}
.login-hero p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    max-width: 320px;
}
.login-body {
    padding: 1.5rem 1.5rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}
.login-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.card-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #F0EDE6;
    margin-bottom: 1.25rem;
}
.card-icon {
    width: 40px;
    height: 40px;
    background: #FDF8EE;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.card-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
}
.card-header p {
    font-size: 0.78rem;
    color: #888;
}
.pole { margin-bottom: 1rem; }
.pole:last-of-type { margin-bottom: 0; }
label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
    font-family: system-ui, sans-serif;
}
input {
    width: 100%;
    padding: 11px 14px;
    border-radius: 10px;
    border: 1.5px solid #E8E4DC;
    font-size: 0.93rem;
    font-family: system-ui, sans-serif;
    background: #FAFAF7;
    color: #1a1a1a;
    transition: border-color 0.15s;
    outline: none;
}
input:focus { border-color: #C9A84C; background: white; }
.btn-login {
    width: 100%;
    padding: 13px;
    background: #1a1a2e;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: system-ui, sans-serif;
    transition: background 0.15s;
}
.btn-login:hover { background: #C9A84C; color: #1a1a2e; }
.btn-login .arrow { color: #C9A84C; font-size: 1.1rem; }
.btn-login:hover .arrow { color: #1a1a2e; }
.btn-note {
    text-align: center;
    font-size: 0.75rem;
    color: #aaa;
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-family: system-ui, sans-serif;
}
.forgot { 
    text-align: center; 
    margin-top: 0.75rem; 
    font-size: 0.78rem;
    font-family: system-ui, sans-serif;
}
.forgot a { color: #C9A84C; text-decoration: none; }
.blad-box {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.82rem;
    color: #B91C1C;
    margin-bottom: 1rem;
    font-family: system-ui, sans-serif;
}
.security-note {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    font-size: 0.78rem;
    color: #666;
    font-family: system-ui, sans-serif;
}
.security-icon {
    width: 32px;
    height: 32px;
    background: #EEF2FF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* INFRA 3E.2C2 — login bez inline CSS */
.login-hero {
    background: #1a1a2e;
    padding: 0.5rem 2rem 2rem;
}

.login-hero-inner {
    width: 100%;
}

.login-kicker {
    font-size: 0.72rem;
    color: #888;
    margin-bottom: 0.5rem;
    font-family: system-ui, sans-serif;
}

.login-hero-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    font-family: Georgia, serif;
}

.login-hero-copy {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    font-family: system-ui, sans-serif;
}

.security-title {
    color: #1a1a1a;
}
