/* Container */
.subscribe-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 12px;
  box-sizing: border-box; 
}

/* Labels */
.subscribe-container label {
  display: block;
  margin: 15px 0 5px 0;
  font-size: 14px;
  font-weight: 400; 
}
/* Input Fields */
.subscribe-container input {
  width: 100%;
  height: 40px;
  padding: 6px 10px;
  background-color: #ffffff;
  border: 1px solid #4D688C;
  box-shadow: none;
  box-sizing: border-box; 
}
.subscribe-container input:focus, .subscribe-container input:focus {
  border: 1px solid #008EAA;
  outline: 1px solid #008EAA; 
}

/* Removes awkward default styles on iOS */
.subscribe-container input{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; 
}

/* Subscribe button */
.subscribe-container .subscribe-button {
  width: 100%;
  height: 40px;
  color: #4D688C;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: .1rem;
  margin: 20px 0 10px 0;
  text-decoration: none;
  background-color: #ffffff;
  border: 2px solid #4D688C;
  cursor: pointer;
}
.subscribe-container .subscribe-button:hover {
  color: #ffffff;
  background-color: #4D688C;
  border: 1px solid #4D688C;
}

/* Clearing */
.subscribe-container:after {
  content: "";
  display: table;
  clear: both; 
}
