body {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Open Sans, Ubuntu, Fira Sans, Helvetica Neue, sans-serif;
  font-size: 15px;
  margin: 0;
  
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
}

.page {
  padding: 50px;
  min-width: 960px;
  margin: auto;
  background-color: #eeeeee;
}

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

.subscription-text {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  margin-right: 50px;
}

.field {
  box-sizing: border-box;
  width: 285px;
  border: 2px solid #dadada;
  margin: 0;
  
  font-size: 14px;
  padding: 10px 14px;
  height: 40px;
  background-color: #ffffff;
}

.field:focus {
  outline-color: #ed1c24;
}

.button {
  box-sizing: border-box;
  height: 40px;
  padding: 3px 20px;
  border: none;
  
  font-size: 14px;
  color: #ffffff;
  
  cursor: pointer;
  margin-left: 20px;
  background-color: #ed1c24;
  border-radius: 4px;
}

.button:focus {
  outline-offset: 3px;
  outline: 3px solid #ed1c24;
}