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

:root {
  // colors
  --white: rgba(255, 255, 255, 1);
  --white-15: rgba(255, 255, 255, 0.15);
  --white-25: rgba(255, 255, 255, 0.25);
  --white-35: rgba(255, 255, 255, 0.35);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-75: rgba(255, 255, 255, 0.75);
  --white-88: rgba(255, 255, 255, 0.88);

  --black: rgba(0, 0, 0, 1);
  --black-35: rgba(0, 0, 0, 0.35);
  --black-50: rgba(0, 0, 0, 0.5);
  --black-75: rgba(0, 0, 0, 0.75);

  // owncast logo color family
  --owncast-purple: rgba(120, 113, 255, 1); // #7871FF;
  --purple-dark: rgba(28, 26, 59, 1); // #1c1a3b;//
  --pink: rgba(201, 139, 254, 1); // #D18BFE;
  --blue: rgba(32, 134, 225, 1); // #2086E1;

  // owncast puprple variations
  --owncast-purple-25: rgba(120, 113, 255, 0.25);
  --owncast-purple-50: rgba(120, 113, 255, 0.5);

  --gray-light: rgba(168, 175, 197, 1);
  --gray-medium: rgba(102, 107, 120, 1);
  --gray: rgba(51, 53, 60, 1);
  --gray-dark: rgba(23, 24, 27, 1); // #17181b;

  --online-color: #73dd3f;
  --offline-color: #999;

  --ant-error: #ff4d4f;
  --ant-success: #52c41a;
  --ant-warning: #faad14;
  --ant-transition-duration: 0.15s;

  // ////////////////////////////////
  --default-text-color: var(--white-88);
  --default-bg-color: var(--black);
  --default-link-color: var(--owncast-purple);

  --container-bg-color: var(--gray-dark);
  --container-bg-color-alt: var(--purple-dark);
  --container-border-radius: 4px;

  --code-color: #9cdcfe;
  --code-bg-color: var(--owncast-purple-25);

  --nav-bg-color: var(--gray-dark);
  --nav-text: #aaa;
  --nav-selected-text: var(--pink); //#cd7cff;

  --button-focused: var(--owncast-purple-50);

  --textfield-border: var(--white-25);
  --textfield-bg: var(--black);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
  /*   height: 100vh;
  width: 100vw; */
  background-color: var(--white);
}

row {
  width: 100%;
}

form {
  width: 70vw;
  min-width: 500px;
  max-width: 700px;
  align-self: center;
  border-radius: var(--container-border-radius);
  padding: 40px;
  background-color: var(--owncast-purple-50);
}

/* input {
  display: inline;
  border-radius: 6px;
  margin-bottom: 6px;
  padding: 12px;
  border: 1px solid rgba(50, 50, 93, 0.1);
  height: 44px;
  font-size: 20px;
  width: 80%;
} */

.result-message {
  line-height: 22px;
  font-size: 16px;
}
.result-message a {
  color: rgb(89, 111, 214);
  font-weight: 600;
  text-decoration: none;
}
.hidden {
  display: none;
}
#card-error {
  color: rgb(105, 115, 134);
  text-align: left;
  font-size: 13px;
  line-height: 17px;
  margin-top: 12px;
}
#card-element {
  border-radius: 4px 4px 0 0;
  padding: 12px;
  border: 1px solid rgba(50, 50, 93, 0.1);
  height: 44px;
  width: 100%;
  background: white;
}
#payment-request-button {
  margin-bottom: 32px;
}
/* Buttons and links */
/* button {
  background: var(--button-focused);
  color: #ffffff;
  font-family: Arial, sans-serif;
  border-radius: 0 0 4px 4px;
  border: 0;
  padding: 12px 16px;
  font-size: 28px;
  font-weight: 600;
  cursor: pointer;
  display: block;
  transition: all 0.2s ease;
  box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
  width: 100%;
}
button:hover {
  filter: contrast(115%);
} */
button:disabled {
  opacity: 0.5;
  cursor: default;
}
/* spinner/processing state, errors */
.spinner,
.spinner:before,
.spinner:after {
  border-radius: 50%;
}
.spinner {
  color: #ffffff;
  font-size: 22px;
  text-indent: -99999px;
  margin: 0px auto;
  position: relative;
  width: 20px;
  height: 20px;
  box-shadow: inset 0 0 0 2px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.spinner:before,
.spinner:after {
  position: absolute;
  content: "";
}
.spinner:before {
  width: 10.4px;
  height: 20.4px;
  background: #5469d4;
  border-radius: 20.4px 0 0 20.4px;
  top: -0.2px;
  left: -0.2px;
  -webkit-transform-origin: 10.4px 10.2px;
  transform-origin: 10.4px 10.2px;
  -webkit-animation: loading 2s infinite ease 1.5s;
  animation: loading 2s infinite ease 1.5s;
}
.spinner:after {
  width: 10.4px;
  height: 10.2px;
  background: #5469d4;
  border-radius: 0 10.2px 10.2px 0;
  top: -0.1px;
  left: 10.2px;
  -webkit-transform-origin: 0px 10.2px;
  transform-origin: 0px 10.2px;
  -webkit-animation: loading 2s infinite ease;
  animation: loading 2s infinite ease;
}
@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@media only screen and (max-width: 600px) {
  form {
    width: 80vw;
  }
}

/* .main-container {
  width: 600px;
  border-color: black;
  border-width: 2px;
} */

#logo {
  background: url(https://goth.land/logo);
  background-repeat: no-repeat;
  background-size: cover;
    background-color: #d0b0ff;
}

input {
  border-bottom-color: lightgray;
  border-bottom-width: 1px;
}