.esquerda {
    float: left;
}

.cor-primaria {
    color: #00995d;
}

h2, h5 {
    color: #565656;
    text-align: center;
}

.panel {
    margin: 0 auto;
}

.form {
    float: none;
    font-size: 18px;
    font-weight: normal;
    color: #565656;
    margin: 5%;
    text-align: center;
}

.form-group {
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
}

input[type="radio"] {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

label.rb {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    padding-right: 10px;
    line-height: 36px;
    cursor: pointer;
    font-weight: normal;
    font-size: 16px;
}

label.rb::before {
    content: " ";
    position: absolute;
    top: 6px;
    left: 0;
    display: block;
    width: 24px;
    height: 24px;
    border: 2px solid #00995d;
    border-radius: 4px;
    z-index: -1;
}

input[type="radio"] + label.rb::before {
    border-radius: 18px;
}

/* Quando está marcado */
input[type="radio"]:checked + label.rb {
    padding-left: 10px;
    color: #fff;
}

input[type="radio"]:checked + label.rb::before {
    top: 0;
    width: 100%;
    height: 100%;
    background: #00995d;
}


/* Quando passa o mouse por cima */
input[type="radio"]:hover + label.rb {
    padding-left: 10px;
    color: #fff;
}

input[type="radio"]:hover + label.rb::before {
    top: 0;
    width: 100%;
    height: 100%;
    background: #00995d;
}

/* Transição */
label.rb, label.rb::before {
    transition: .25s all ease;
    -o-transition: .25s all ease;
}





/* Estilo dos inputs */
input[type="text"], input[type="email"],
textarea {
  font-family: 'Ubuntu', sans-serif;
  display: block;
  margin: 10px;
  padding: 5px;
  border: none;
  font-size: 22px;
}

textarea:focus,
input[type="text"]:focus, input[type="email"]:focus {
  outline: 0;
}

input[type="text"].question, input[type="email"].question,
textarea.question {
  font-size: 18px;
  font-weight: 300;
  border-radius: 2px;
  margin: 10px;
  border: none;
  width: 100%;
  background: rgba(0, 0, 0, 0);
  transition: padding-top 0.2s ease, margin-top 0.2s ease;
  overflow-x: hidden;
}

input[type="text"].question + label,
textarea.question + label,
input[type="email"].question + label {
  display: block;
  position: relative;
  white-space: nowrap;
  padding: 0;
  margin: 0;
  width: 100%;
  border-top: 1px solid red;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
  height: 0px;
}

input[type="text"].question:focus + label,
textarea.question:focus + label,
input[type="email"].question:focus {
  width: 100%;
}

input[type="text"].question:focus,
input[type="text"].question:valid,
input[type="email"].question:focus,
input[type="email"].question:valid {
  padding-top: 35px;
}

textarea.question:valid,
textarea.question:focus {
  margin-top: 35px;
}

input[type="text"].question:focus + label > span,
input[type="text"].question:valid + label > span,
input[type="email"].question:focus + label > span,
input[type="email"].question:valid + label > span {
  top: -85px;
  font-size: 16px;
  color: #333;
}

textarea.question:focus + label > span,
textarea.question:valid + label > span {
    top: -145px;
    font-size: 16px;
    color: #333;
}

input[type="text"].question:valid + label,
textarea.question:valid + label,
input[type="email"].question:valid + label {
  border-color: #00995d;
}

input[type="text"].question:invalid,
textarea.question:invalid,
input[type="email"].question:invalid {
  box-shadow: none;
}

input[type="text"].question + label > span,
textarea.question + label > span,
input[type="email"].question + label > span {
  font-weight: 200;
  margin: 0;
  position: absolute;
  color: #8F8F8F;
  font-size: 18px;
  top: -40px;
  left: 0px;
  z-index: -1;
  -webkit-transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
  transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
}

.subtitle {
  font-weight: normal;
  font-size: 14px;
}

/* LOADER */
.spinner {
    width: 40px;
    height: 40px;
  
    position: relative;
    margin: 100px auto;
  }
  
  .double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #333;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
  }
  
  .double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
  }
  
  @-webkit-keyframes sk-bounce {
    0%, 100% { 
      -webkit-transform: scale(0.0) 
    } 50% {
       -webkit-transform: scale(1.0) 
    }
  }
  
  @keyframes sk-bounce {
    0%, 100% { 
      transform: scale(0.0);
      -webkit-transform: scale(0.0);
    } 50% { 
      transform: scale(1.0);
      -webkit-transform: scale(1.0);
    }
  }


/*NOVO CHECKBOX */
@-webkit-keyframes check {
  0% {
    height: 0;
    width: 0;
  }
  25% {
    height: 0;
    width: 10px;
  }
  50% {
    height: 20px;
    width: 10px;
  }
}
@-moz-keyframes check {
  0% {
    height: 0;
    width: 0;
  }
  25% {
    height: 0;
    width: 10px;
  }
  50% {
    height: 20px;
    width: 10px;
  }
}
@-ms-keyframes check {
  0% {
    height: 0;
    width: 0;
  }
  25% {
    height: 0;
    width: 10px;
  }
  50% {
    height: 20px;
    width: 10px;
  }
}
@keyframes check {
  0% {
    height: 0;
    width: 0;
  }
  25% {
    height: 0;
    width: 10px;
  }
  50% {
    height: 20px;
    width: 10px;
  }
}

.checkbox {
  background-color: #fff;
  display: inline-block;
  height: 50px;
  margin: 0 0.25em;
  width: 50px;
  border: 1px #00995d solid;
}

.checkbox label {
  display: block;
  height: 50px;
  position: relative;
  width: 50px;
}
.checkbox label:after {
  -moz-transform: scaleX(-1) rotate(135deg);
  -ms-transform: scaleX(-1) rotate(135deg);
  -webkit-transform: scaleX(-1) rotate(135deg);
  transform: scaleX(-1) rotate(135deg);
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  border-right: 4px solid #cee;
  border-top: 4px solid #cee;
  content: '';
  display: block;
  height: 20px;
  left: 14px;
  position: absolute;
  top: 26px;
  width: 10px;
}
.checkbox label:hover:after {
  border-color: #bdd;
}
.checkbox input {
  display: none;
}
.checkbox input:checked + label:after {
  -webkit-animation: check 1s;
  -moz-animation: check 1s;
  -o-animation: check 1s;
  animation: check 1s;
  border-color: #6aa;
}


.checkbox:checked {
  border: 1px #00995d solid;
}

/*NOVO*/

h2{
  margin-bottom: 40px;
}

p{
  color: #565656;
  margin-top: 20px;
  font-size: 17px;
  font-family: inherit;
}

.btn-enviar{
  font-size: 18px;
  width: 60%;
  height: auto;


}

.row{
  margin-left: 45px;
}

.checkbox{
  float: right;
}

@media screen and (max-width: 770px){
  .container-button{
   
    width: 300px;
    height: auto;
    align-items: center;
  }

  .btn-enviar{
  
    width: 150px;
    height: auto;
    
  
  
  }

}
  
