/* ============================================================
   Consultas SoftGuarani — mismo estilo que simulador.softguarani.com
   Paleta: fondo azul-negro, acento cian
   ============================================================ */

:root {
    --bg: #0a0e1a;
    --bg-elevated: #111827;
    --border: rgba(0, 198, 255, 0.15);
    --accent: #00c6ff;
    --accent-dark: #0072ff;
    --accent-hover: #33d1ff;
    --text: #e2e8f0;
    --text-muted: #94a3b8;
    --error-bg: #3a1c22;
    --error-border: #e63946;
    --success-bg: #163a26;
    --success-border: #2f9e5f;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.auth-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.auth-card {
    width: 100%;
    max-width: 440px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
}

.auth-logo {
    display: block;
    width: 140px;
    height: 140px;
    margin: 0 auto 16px;
    border-radius: 20px;
    object-fit: cover;
}

.auth-title {
    margin: 0 0 4px;
    font-size: 1.4rem;
    text-align: center;
}

.auth-title span {
    color: var(--accent);
}

.auth-subtitle {
    margin: 0 0 24px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

form label {
    display: block;
    margin: 16px 0 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

form input[type="text"] {
    width: 100%;
    padding: 10px 12px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 1rem;
    letter-spacing: 0.5px;
}

form input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 198, 255, 0.25);
}

.btn-primary {
    margin-top: 24px;
    width: 100%;
    padding: 11px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 198, 255, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 6px 26px rgba(0, 198, 255, 0.4);
}

.alert {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 16px;
    border: 1px solid transparent;
}

.alert-error {
    background: var(--error-bg);
    border-color: var(--error-border);
    color: #ff9fb0;
}

.result-card {
    margin-top: 24px;
    padding: 20px;
    background: var(--bg);
    border: 1px solid var(--success-border);
    border-radius: 10px;
}

.result-name {
    margin: 0 0 14px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #8fe0ab;
    text-align: center;
}

.result-list {
    margin: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 12px;
    row-gap: 8px;
    font-size: 0.9rem;
}

.result-list dt {
    color: var(--text-muted);
}

.result-list dd {
    margin: 0;
    font-weight: 600;
}
