﻿/* Estilos específicos para esta vista aislada */
body {
    background-color: #004da7;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow-x: hidden;
}

.qa-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.login-card {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.qa-logo {
    max-width: 180px;
    margin-top:1.5rem;
}

.game-column {
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Ajuste móvil */
@media (max-width: 992px) {
    body {
        height: auto;
        padding: 2rem 0;
    }

    .login-card {
        margin-bottom: 2rem;
    }
}
