@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 5px;
  padding: 8px;
  outline: none;
  font-family: 'Poppins', sans-serif;
  color: #008bb9;
  /* box-sizing: border-box; */
  font-size: 20px;
}

/* html,body { */
  /* padding: 0;
  margin: 0;
  color: #008bb9; */
  /* #4285f4; */
  /* #333; */
  /* font-family: 14px 'Poppins', sans-serif; */
  /* font-size: 20px; */
  /* font-weight: bold; */
/* } */

h1 {
  margin-bottom: 20px;
  font-size: 30px;
  /* font-family: 14px 'Poppins', sans-serif; */
}
form {
  padding: 50px;
  padding-top:20px;
  padding-bottom:20px;
  background: #DDD;
  border: 2px solid #008bb9;
  /* #AAA; */
  width: 360px;
  /* height: 220px; */
  margin: 30px auto;
  font-weight: 500;
  border-radius: 20px;
  /* font-family: 14px 'Poppins', sans-serif; */
}

input {
  border: 2px solid #ccc;
  padding: 6px;
  display: block;
  margin-bottom: 20px;
  width: 96%;
  border-radius: 8px;
  border: 1px solid #008bb9;
}

button{
  background-color: #008bb9;
  color: white;
  padding: 10px;
  cursor: pointer;
  border: none;
  margin-right: 20px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.5s ease;
}

button:hover{
  background-color: #57504d;
}


a{
  background-color: #008bb9;
  color: white;
  padding: 10px;
  cursor: pointer;
  border: none;
  margin-right: 20px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
}

a:hover{
  background-color: #57504d;
}
