body {
    background-color: #ebeff3;
}

/* Estilos personalizados para o banner */
.banner {
    background-image: url("caminho/para/sua/imagem.jpg");
    background-color: #007bff; /* Substitua pelo caminho da sua imagem */
    background-size: cover;
    color: #fff; /* Cor do texto no banner */
    padding: 60px 0; /* Espaçamento interno superior e inferior */
    text-align: center;
}

.banner h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.banner p {
    font-size: 1.5em;
}

.teste-card {
    display: flex;
    align-items: center; /* Alinhamento vertical */
    justify-content: center; /* Alinhamento horizontal */
    border: 1px solid #007bff;
    height: 100px;
    background-color: white;
    cursor: pointer;
    color: #043b72;
    border-radius: 15px;
    border-width: 2px;
    border-style: solid;
    border-color: #12344d;
}
/* .teste-card-warning{
      border: 1px solid #dc3545!important;
      color: #dc3545!important;
    }
    .teste-icon-warning{
      border-left: 2px solid #dc3545!important;
    } */
.teste-icon {
    font-size: 35px;
    padding-left: 20px;
    border-left: 2px solid #007bff;
    margin-left: 10px;
}

.teste-name {
    font-size: 20px;
    padding: 20px;
}
/* .teste-card:hover{
            background-color: #eee;
            transition: 0.3s;
        } */
