body {
  margin: 0;
  font-family: 'Roboto';
}

.wrapper {
  display: flex;
  justify-content: center;
  padding-top: 10%;
  flex-direction: column;
  align-items: center;
}

.logo {
  max-width: 500px;
  margin-bottom: 50px;
}

form {
  display: flex;
  flex-direction: column;
  margin-bottom: 100px;
}

input {
  border: 1px solid #dfe1e5;
  padding: 15px;
  border-radius: 28px;
  outline: 0;
  width: 450px;
  font-size: 1.2rem;
}

button {
  margin: 0 auto;
  background-color: #eeeeee;
  border: 1px solid #f2f2f2;
  border-radius: 4px;
  color: #5F6368;
  cursor: pointer;
  font-family: arial,sans-serif;
  font-size: 14px;
  min-width: 54px;
  padding: 12px 16px;
  text-align: center;
}

button:hover {
  border: 1px solid #c6c6c6;
  box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  color: #222;
}



.shortcuts {
  display: flex;
  flex-wrap: wrap;
}

.break {
  flex-basis: 100%;
  height: 0;
}

.shortcuts h2 {
  margin-bottom: 25px;
  font-size: 1.2rem;
}

.shortcut {
  text-align: center;
  margin-right: 35px;
}

.shortcut img {
  max-width: 70px;
}



a {
  text-decoration: none;
  color: #111;
}


