* {
  font-size: 12px;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  color: #333333;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.global {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #eee;
}

.logo {
  margin: 20px 0px;
  text-align: center;
  padding: 0px 20px;
}
.g-recaptcha {
    text-align: center;
    display: flex;
    justify-content: center;
        padding: 10px;
}
.slogan {
  font: 35px 'calibri';
  color: #7cc142;
  margin: 0px 0px;
  text-align: center;
  font-weight: bold;
}

.conteudo {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 5%;
}

.conteudo .box {
  width: 360px;
}

.conteudo .box .dados .item {
  font: 18px 'calibri';
  color: #333;
  display: flex;
  align-items: center;
  margin: 30px 0px;
}

.conteudo .box .dados .item a {
  color: #666;
  font: inherit;
  display: flex;
  align-items: center;
  border-bottom: 1px solid;
  transition: .5s;
}

.conteudo .box .dados .item a:hover {
  color: #7cc142;
}

.conteudo .box .dados .item i {
  font-size: inherit;
  color: #7cc142;
  margin: 0px 10px;
}

.conteudo .box input {
  width: 100%;
  font: 18px 'calibri';
  padding: 10px 10px;
  border: 1px solid #ddd;
  margin-bottom: 10px;
  outline: none;
  box-sizing: border-box;
  background: #f5f5f5;
}

.conteudo .box textarea {
  width: 100%;
  font: 18px 'calibri';
  padding: 10px;
  border: 1px solid #ddd;
  margin-bottom: 10px;
  outline: none;
  resize: none;
  min-height: 100px;
  background: #f5f5f5;
  box-sizing: border-box;
}

.conteudo .box input.submit {
  background: #666;
  color: #fff;
  border-color: #666666;
  transition: .5s;
  cursor: pointer;
}

.conteudo .box input.submit:hover {
  background: #7cc142;
  border-color: #7cc142;
}

@media only screen and (max-width: 800px) {
  * {
    max-width: 100%;
    box-sizing: border-box;
  }

  .global {
    height: auto;
  }
}

@media only screen and (max-width: 350px) {
  .conteudo {
    padding: 0 1%;
  }
}
