body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    background: #0a0a0a;
    min-height: 100vh;
    color: rgb(226, 232, 240);
    position: relative;
    overflow-x: hidden;
}

/* Centralização apenas para páginas de login e registro */
body.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Efeito Matrix - Letras descendo */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.matrix-column {
    position: absolute;
    top: -100px;
    font-family: 'Courier New', monospace;
    font-size: 10px; /* Reduzido de 14px para 10px */
    color: #00d4ff; /* Mudado para azul claro */
    opacity: 0.4; /* Aumentado um pouco para mais destaque */
    animation: matrixFall linear infinite;
    white-space: nowrap;
}

@keyframes matrixFall {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* Gradiente sutil sobre o efeito matrix */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.9) 0%, 
        rgba(20, 25, 40, 0.8) 50%, 
        rgba(10, 10, 10, 0.9) 100%);
    z-index: -1;
    pointer-events: none;
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes slideIn {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}y: 0;
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.main-container {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.login-card {
    background-color: rgba(11, 17, 32, 0.8);
    border-radius: 1rem;
    padding: 2.5rem;
    width: 100%;
    max-width: 28rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(30, 41, 59, 0.5);
    text-align: center;
}

.lock-icon-container {
    background-color: rgba(0, 255, 157, 0.1);
    border-radius: 0.75rem;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem auto;
}

.lock-icon-container svg {
    color: rgb(0, 255, 157);
}

.welcome-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: rgb(226, 232, 240);
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgb(148, 163, 184);
    margin-bottom: 0.5rem;
}

.input-field-container {
    position: relative;
}

.input-field-container svg {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    color: rgb(148, 163, 184);
}

.input-field-container input {
    width: 100%;
    background-color: rgba(11, 17, 32, 0.5);
    border: 1px solid rgb(30, 41, 59);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    color: rgb(226, 232, 240);
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.input-field-container input::placeholder {
    color: rgb(148, 163, 184);
}

.input-field-container input:focus {
    border-color: rgb(0, 255, 157);
}

.login-button {
    width: 100%;
    background: linear-gradient(to right, rgb(0, 255, 157), rgb(0, 181, 117));
    color: rgb(11, 17, 32);
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(1.0);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.login-button:hover {
    opacity: 0.9;
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 255, 157, 0.2), 0 4px 6px -2px rgba(0, 255, 157, 0.1);
}

.create-account-button {
    width: 100%;
    background: linear-gradient(to right, rgb(30, 41, 59), rgb(19, 27, 44));
    color: white;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 500;
    border: 1px solid rgba(168, 85, 247, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.create-account-button:hover {
    background: linear-gradient(to right, rgba(103, 58, 183, 0.1), rgba(233, 30, 99, 0.1));
}

.link-button {
    text-decoration: none;
    display: block;
    margin-top: 1rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.cookie-content {
    background-color: rgba(11, 17, 32, 0.95);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 400px;
    text-align: center;
    border: 1px solid rgba(30, 41, 59, 0.5);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.cookie-icon {
    background-color: rgba(0, 255, 157, 0.1);
    border-radius: 0.75rem;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem auto;
}

.ghost-icon {
    color: rgb(0, 255, 157);
    width: 2rem;
    height: 2rem;
}

.cookie-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: rgb(226, 232, 240);
}

.ghost-text {
    color: rgb(0, 255, 157);
}

.cookie-content p {
    color: rgb(148, 163, 184);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.accept-button {
    width: 100%;
    background: linear-gradient(to right, rgb(0, 255, 157), rgb(0, 181, 117));
    color: rgb(11, 17, 32);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accept-button:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* Floating Ghost */
.floating-ghost {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    pointer-events: none;
}

.ghost-bg {
    color: rgba(255, 255, 255, 0.1);
    animation: float 3s ease-in-out infinite, glow 2s ease-in-out infinite alternate;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes glow {
    0% { opacity: 0.1; }
    100% { opacity: 0.2; }
}

/* Icon styling */
.lock-icon {
    color: rgb(0, 255, 157);
    width: 1.5rem;
    height: 1.5rem;
}

.input-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: rgb(148, 163, 184);
}

/* Hidden class for cookie banner */
.hidden {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .login-card {
        margin: 1rem;
        padding: 1.5rem;
    }

    .welcome-text {
        font-size: 1.25rem;
    }
}


