
/******************************************
/* CSS
/*******************************************/

/* Box Model Hack */
*{
  box-sizing: border-box;
}



/******************************************
/* LAYOUT
/*******************************************/

ul {
  padding: 0;
  list-style-type: none;
}

body {
  background: rgb(209, 217, 223);
  font-family: 'Roboto', sans-serif;

  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  padding: 20px;
  display: flex;
  flex-direction: column;
  background: white;
  width: 400px;
  border-radius: 15px;
  box-shadow: 0px 30px 100px 0px rgba(0,0,0,0.1);
}

p {
  font-weight: 500;
  font-size: 20px;
  padding-bottom: 20px;
  margin-bottom: 0;
  border-bottom: 1px solid grey;
}

input {
  margin-top: 5px;
  background: rgb(247, 247, 247);
  border: none;
  border-bottom: 2px solid dodgerblue;
  font-size: 18px;
  padding: 5px;
  width: 100%;
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
}

button {
  background: white;
  color: dodgerblue;
  border-radius: 50px;
  border: 2px solid dodgerblue;
  padding: 10px;
  width: 50%;
  align-self: center;
  font-size: 20px;
}

button:hover {
  background: dodgerblue;
  color: white;
}


/******************************************
/* ADDITIONAL STYLES
/*******************************************/
