body {
  background-color: #eee;
}

.header-image {
  width: 100%;
}

.container {
  position: relative;
  max-width: 700px;
  padding: 0;
  margin: 50px auto;
  background-color: white;
  box-shadow: 0 0 2px 0 #ddd;
}

.container[data-loading="true"]::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: white;
  opacity: .6;
}

.form {
  padding: 50px 25px;
}

.form input {
  text-transform: lowercase;
}

.form-control {
  background-color: #f8f9fa;
  color: #000;
}

.form-control[data-valid="true"] {
  border-color: #76B947;
}

.form-control[data-valid="false"] {
  border-color: red;
}

.btn-primary {
  background-color: #e91e53;
  border-color: #e91e53;
}

.btn-primary:hover {
  background-color: #e91e53;
  border-color: #e91e53;
  opacity: .8;
}

.btn-primary:disabled {
  background-color: #e91e53;
  border-color: #e91e53;
  opacity: .5;
}

.billing {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 10px;
  font-size: 10px;
}

.billing,
.billing * {
  user-select: none;
}

.billing .row {
  display: inline-flex;
  border-radius: 6px;
  border: solid 1px #e91e53;
  color: #e91e53;
}

.billing .col-auto {
  cursor: pointer;
}

.billing .col-auto.active {
  background-color: #e91e53;
  color: white;
}

.plan {
  text-align: center;
  border: solid 1px #ddd;
  border-radius: 6px;
  border-top: solid 7px #ddd;
  margin: 5px;
  padding: 20px 0;
  cursor: pointer;
  margin-bottom: 20px;
}

.plan.active {
  border-color: #e91e53;
}

.plan,
.plan * {
  user-select: none;
}

.plan-name {
  margin-bottom: 6px;
  text-transform: uppercase;
  font-size: small;
}

.plan-value {
  font-size: 1.25em;
  font-weight: bold;
  margin-bottom: 3px;
}

.plan-time {
  text-transform: lowercase;
  font-size: small;
  margin-bottom: 3px;
}

.plan-tax {
  color: gray;
  margin-bottom: 3px;
}

.submit-container {
  text-align: center;
}

.submit-container button {
  padding: 8px 24px;
  text-transform: uppercase;
}