
.cp-form {
    max-width: 450px;
    padding: 20px;
    background: #ffffffdd;
    border-radius: 15px;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: Arial, sans-serif;
}

.cp-form input,
.cp-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.cp-form button {
    padding: 14px;
    background: #0a84ff;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: .3s;
}

.cp-form button:hover {
    background: #0066d6;
}

.cp-sucesso {
    margin-top: 10px;
    padding: 12px;
    background: #d4f7d4;
    color: #0a6b00;
    border-radius: 8px;
    font-weight: bold;
}
