/*2*/
* {
  box-sizing: border-box;
}

html {
  font-family: var(--font-family);
  font-size: 1em;
  line-height: 1.4;
  text-rendering: geometricprecision;
}

body {
  margin: 0;
  padding: 50px 0;
}

p {
  padding: 10px;
}

input:not([type="checkbox"], [type="radio"], [type="button"], [type="submit"]),
select {
  -webkit-appearance: none;
  appearance: none;
  padding: 14px 20px;
  background: #f9f9f9;
  font-size: 16px;
  border: 1px solid #d3d3d3;
}

input[type="checkbox"] {
  margin: 0 10px 0 0;
}

a {
  color: var(--secondary-color);
}

.cc__select {
  width: 100%;
}

[name="card_cvv2"] {
  max-width: 100px !important;
}

#card_exp_month {
  max-width: 200px !important;
  margin-right: 14px;
}

#card_exp_year {
  max-width: 150px !important;
}

.cc__container {
  overflow: hidden;
  max-width: 990px;
  margin: 0 auto;
  border: 6px solid white;
  padding: 50px;
  color: var(--primary-font-color);
  text-align: left;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  box-shadow: var(--primary-color) 14px 14px 0 0px;
}

.cc__button.cc__submit {
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.2);
}

.cc__header {
  text-align: center;
}

.cc__section {
  margin-bottom: 30px;
}

.cc__heading {
  width: calc(100% + 80px);
  margin: 0 -40px 30px;
  padding: 20px 40px;
  font-size: 20px;
  text-align: left;
}

.cc__header__image {
  max-width: 400px;
}

.cc__site {
  margin-bottom: 10px;
  text-align: center;
}

.cc__text--1 {
  margin-top: 0;
  text-align: center;
}

.cc__text--2 {
  margin: 40px 0;
  text-align: center;
}

.cc__select__container {
  padding: 24px;
  border-radius: 10px;
}

.cc__select__label {
  display: block;
  margin-bottom: 16px;
  font-weight: bold;
}

.cc__error {
  margin: 40px 0;
  padding: 20px 30px;
  border: 1px solid #e8c1c1;
  border-radius: 10px;
  background: #fde4e4;
  color: #d40000;
}

.cc__field__wrapper {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-bottom: 14px;
  justify-content: space-between;
}

.cc__field__wrapper label {
  flex-shrink: 0;
  margin-right: 20px;
  font-weight: bold;
  text-align: left;
}

.cc__field__wrapper input,
.cc__field__wrapper .card_exp {
  width: 100%;
  max-width: 400px;
  min-width: 80%;
}

.cc__field__wrapper .card_exp {
  text-align: left;
}

.cc__button {
  display: block;
  max-width: 300px;
  width: 100%;
  margin: 40px auto 0;
  padding: 20px 30px;
  background: var(--primary-color);
  border-radius: 10px;
  color: var(--secondary-color);
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
}

.cc__submit__content::after {
  content: "SUBMIT";
}

.cc__submit__content.cc__loader::after {
  content: none;
}

.cc__button:disabled {
  opacity: 0.5;
}

.cc__card__container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.cc__card {
  flex-shrink: 0;
  margin: 0 10px;
}

.cc__image {
  max-width: 50px;
  margin: 0 10px;
}

.cc__terms {
  font-weight: bold;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

fieldset.cc__section:last-of-type {
  text-align: center;
}

fieldset.cc__section:last-of-type .cc__heading {
  text-align: left;
}

.cc__ip {
  font-weight: bold;
}

.cc__loader {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-block;
  border-top: 3px solid #fff;
  border-right: 3px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.success {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.success a:hover {
  color: var(--secondary-color);
}

.success__login {
  display: flex;
  justify-content: center;
}

.success__loginLink {
  padding: 20px 30px;
  background: var(--primary-color);
  border-radius: 10px;
  color: var(--primary-font-color);
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
}

.success__table {
  width: 100%;
  margin-block: 40px;
  border-collapse: collapse;
  background-image: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
  background-origin: border-box;
  border: 5px solid transparent;
}

.success__table td {
  background: var(--background-color);
  padding: 10px;
}

.success__label {
  font-weight: bold;
}

.success__supportSection {
  margin-top: 40px;
  text-align: center;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.success__supportTitle {
  font-weight: bold;
  font-size: 20px;
  color: var(--primary-font-color);
  margin-bottom: 10px;
}

.success__supportText {
  line-height: 1.8rem;
}

.success__supportLink {
  text-decoration: none;
  transition: color 0.3s ease;
}
