html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.destaque-input {
    border: 2px solid #4c89af;
    background-color: #f9f9f9;
    padding: 10px;
    transition: border-color 0.3s ease-in-out;
}

    .destaque-input:focus {
        border-color: #3e698e;
        outline: none;
    }