
    <style>
/* Estilo do formulário */
.cpa__order_form {
    width: 360px;
    height: 260px;
    margin: 0 auto;
    padding: 0;
    border: none;
    border-radius: 0;
    background-color: transparent;
}

/* Estilo dos inputs */
.cpa__order_form input[type="text"],
.cpa__order_form select {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px; /* Arredondamento das bordas dos inputs */
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
}

/* Botão com efeito de pulsação na cor azul */
.cpa__order_form button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 30px; /* Botão arredondado */
    background-color: #C60F22; /* Vermelho principal */
    color: #ffffff;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
    transition: background 0.3s ease;
    box-shadow: 0 0 0 0 #C60F22;
    animation: pulse-blue 2s infinite; /* Animação */
}

/* Mudança ao passar o mouse */
.cpa__order_form button:hover {
    background-color: #CB6833; /* Vermelhor mais claro */
}

/* Animação de pulsação */
@keyframes pulse-blue {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 #C60F22;
    }
    70% {
        transform: scale(1.01);
        box-shadow: 0 0 0 10px transparent;
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 transparent;
    }
}

/* Estilo dos textos ao lado dos inputs */
.name-inp {
    margin-top: 10px;
    font-weight: bold;
    color: #555;
    font-family: Arial, sans-serif;
    font-size: 16px;
}

    </style>