/* ═══════════════════════════════════════════════════════════════════════════
   Login GenAD — Layout full-page + toast de erro
   ═══════════════════════════════════════════════════════════════════════════ */

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

.genbui-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: var(--z-toast);
    max-width: 480px;
    padding: 16px 20px;
    background: var(--color-error);
    color: var(--color-text-inverse);
    border-radius: var(--radius-base);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-normal);
    display: none;
    animation: genbui-toast-in var(--transition-slow) ease;
}

.genbui-toast strong {
    display: block;
    margin-bottom: 4px;
    font-size: var(--font-size-sm);
}

.genbui-toast-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    color: var(--color-text-inverse);
    font-size: var(--font-size-lg);
    cursor: pointer;
    opacity: .7;
}

.genbui-toast-close:hover {
    opacity: 1;
}

@keyframes genbui-toast-in {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
}
