* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
  font-family: Roboto;
}

body {
  background: #e0e0e0;
}

h3{
  color: #181e40;
}


#cep-component {
  display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex: 1;
    margin: 80px auto;
    border: 1px solid #cecece;
    max-width: 500px;
    border-radius: 7px;
    padding: 20px 0;
    background: #e68705;
}

#header {
  display: flex;
}

#header input{
  font-size: 16px;
}

.dadosCep{
  margin-top: 20px;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  width: 364px;
}

.hidden{
  display: none;
}

button {
  width: 145px;
  height: 24px;
  background: #3F51B5;
  border-radius: 0 5px 5px 0;
  border: 0;
  color: #fff;
  font-weight: bold;
  transition: 0.3s;
}

button:hover{
  background: #192252;
  cursor: pointer;
}

input{
  flex: 1;
  height: 24px;
  padding: 0 24px;
  border: 0;
  border-radius: 5px 0 0 5px;
  color: #3a3a3a;
  border: 2px solid #fff;
  border-right: 0;
}

.first{
}

#cep-form{
  margin-top: 20px;
}