/*/////////////////////
	Theme Name: Tema Decsigner
	Theme URI: https://decsigner.com.br/
	Description: Esse é um thema wordpress desenvolvido pelo programador front-end Bruno Oliveira.
	Author: Bruno Oliveira
	Author URI: https://decsigner.com.br/
	Version: 2.6.1
	Stable tag: 2.6.1
	Requires at least: 4.7
	Tested up to: 5.9
	Requires PHP: 5.6
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: Decsigner
	Description: Esse é um thema wordpress desenvolvido pelo programador front-end Bruno Oliveira.
	Tags: marketing, programação, mídias...
///////////////////*/

body{
   margin:0;
   font-family: "Poppins", sans-serif;
   background: #005DA6;
}

a{
    text-decoration:none !important;
}

/* MOBILE */

@media(max-width:600px){
    
}

/* FIM MOBILE */

/* FORM STYLE */

.form-cadastro.form_style {
  width: 100%;
  margin: 0 auto;
  background-color: #005ca9;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 8px;
}

.form-cadastro label{
    color: white;
}

.form-cadastro.form_style input,
.form-cadastro.form_style textarea,
.form-cadastro.form_style select {
  width: 100%;
  box-sizing: border-box;
  padding: 20px 15px;
  border-radius: 4px;
  border: none;
  margin-bottom: 0;
  background-color: #f2f5f7;
  font-size:17px;
}

/* Corrige o botão */
.form-cadastro.form_style button,
.form-cadastro.form_style input[type="submit"] {
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 100px;
  background-color: #FF7A17;
  color: #fff;
  font-weight: 600;
  font-size:16px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Poppins", sans-serif;
}

.form-cadastro.form_style button:hover,
.form-cadastro.form_style input[type="submit"]:hover {
  background-color: #e29d00;
}


input:focus-visible {
    outline-color: #FF9C00;
}

/* FIM FORM STYLE */

.title-and-logo{
    text-align: center;
}

.title-and-logo img{
    width:200px;
}

.container{
    padding: 1.5em 0;
}

.title-and-logo h1{
    color: white;
    font-weight: 400;
    font-size: 30px;
}

.form-cadastro.form_style br{
	display:none;
}

.conhece-mp{
	display:inline-block;
	line-height: 1;
	position: relative;
    bottom: -10px;
}

.conhece-mp label{
	display: flex;
    align-items: center;
}

/* Esconde o input original */
.conhece-mp input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: 2px solid #0072c6; /* azul institucional */
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease-in-out;
  margin:0;
  margin-right:10px;
  padding:0 !important;
}

/* Efeito hover */
.conhece-mp input[type="radio"]:hover {
  box-shadow: 0 0 0 4px rgba(0, 114, 198, 0.2);
}

/* Estado selecionado */
.wpcf7-form .conhece-mp input[type="radio"]:checked {
  background-color: #FF7A17;
  border-color: #FF7A17;
}

/* Pontinho branco central */
.conhece-mp input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
}