.premiumContainer {
  max-width: 500px;
  margin: auto;
}
.subscription-box {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px;
}
.benefits-list {
  list-style: none;
  line-height: 2;
}
.subscription-form {
  gap: 10px;
}
.plan-box {
  flex: 1;
}
.plan-box.active {
  border-color: #b22e5b !important;
}
.plan-box:hover {
  border-color: #df6c92 !important;
}
.brand-button {
 background-color: #b22e5b;
 border: none;
 color: #ffffff;
 text-align: center;
 text-decoration: none;
 display: flex;
 font-size: 14px;
 cursor: pointer;
 transition: background-color 0.3s ease;
 align-items: center;
 justify-content: center;
 text-transform: uppercase;
 transition: background-color 0.3s ease;
}
.brand-button:hover,
.brand-button:focus {
  background-color: #df6c92;
  transition: background-color 0.3s ease;
  outline: none;
}