.content-button {
  display: flex;
  justify-content: center;
  width: 100%;
}

.content-buttons {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.mauve-button {
  border: none;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: #fff;
  line-height: 18px;
  padding: 15px 20px;
  display: inline-block;
  background-color: #a464a6;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 10px;
  text-align: center;
  width: 200px;
}

.mauve-button:hover,
.mauve-button:focus {
  background-color: #7d447f;
  color: #fff;
  text-decoration: none;
}

.form-bc .form-group label {
  color: #00A0E0;
  font-family: "raleway-semibold";
  font-size: 1.8rem;
}

.header-bc p {
  font-size: 2rem !important;
}
.header-bc h3 {
  font-size: 2.5rem !important;
}
.header-bc .title-blue {
  color: #00A0E0;
}

table {
  border: none;
  width: 100%;
}
table .column-title {
  font-size: 1.6rem;
  font-family: "raleway-regular";
  font-weight: normal;
  width: 51%;
}
table .column-value {
  font-size: 1.8rem;
  font-family: "raleway-semibold";
  vertical-align: top;
  width: 49%;
}

.form-bc-confirmation {
  background-color: #fff;
  padding: 5rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.form-bc-confirmation h3 {
  text-transform: uppercase;
  font-size: 2.5rem;
  font-weight: bold;
}
.form-bc-confirmation p {
  font-size: 1.8rem;
  margin: 2rem 0 2rem 0;
}

.radio-group::marker {
  content: "";
  display: none;
}

.hidden {
  display: none;
}

.visible {
  display: block;
  animation: fadeIn 0.9s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}