/* ========== GERAL ========== */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* TOPO */
.topo-aivy {
    width: 100%;
    height: 140px;
    background: #42187E;
    display: flex;
    align-items: center;
    padding-left: 30px;
}

.topo-aivy img {
    height: 120px;
    object-fit: contain;
}

/* CONTAINER */
.login-container {
    width: 100%;
    min-height: calc(100vh - 140px);
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url('/img/jrm.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 40px;
}

/* CARD */
.login-card {
    background: rgba(255,255,255,0.95);
    width: 350px;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    padding: 2rem;
    text-align: center;
}

/* BOTÃO */
.btn-primary {
    background-color: #42187E;
    border: none;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #6f2bd6;
}

/* IMAGEM MOBILE (oculta no desktop) */
.img-mobile {
    display: none;
}

/* ========== MOBILE ========== */
@media (max-width: 700px) {

    /* Remove imagem de fundo no mobile */
    .login-container {
        background: #f4f4f4;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    /* Ajusta card */
    .login-card {
        width: 90%;
        max-width: 360px;
    }

    /* Exibe imagem abaixo do card */
    .img-mobile {
        display: block;
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }

    .img-mobile img {
        width: 90%;
        max-width: 380px;
        height: auto;
    }
}

