* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.vermelho-padrao {
    background-color: rgb(163, 9, 9);
}

.vermelho-vivo {
    background-color: rgb(163, 9, 9);
}

.colortx {
    color: aliceblue;
    font-size: 20px;
}

body {
    background-image: url('../img/LOGIN/fundo.png');
    background-size: cover; 
    background-repeat: no-repeat; 
    background-position: center; 
    height: 100vh; 
    width: 100vw;
}

.card {
    border-radius: 30px;
    width: 570px;
    height: 350px;
}

.imgcard {
    margin-top: 7px;
    width: 290px;
    height: 340px;
}

/* Ajustes para dispositivos móveis */
@media (max-width: 768px) {
    .card {
        width: 90%; /* Aumenta a largura do card em dispositivos móveis */
        height: auto; /* Permite que a altura do card se ajuste ao conteúdo */
    }

    .imgcard {
        width: 80%; 
        height: auto;
        margin-bottom: 20px; }

    .row {
        flex-direction: column; /* Coloca a imagem acima do formulário */
        align-items: center; /* Centraliza os itens */
    }
}
