:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

:root { 
  --background-color: #fafafa; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #929df9; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --gold-color: #C0A75D;
}
:root {
  scroll-behavior: smooth;
}
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
.center {
  text-align: center;
}
.single {
  display: flex;
  width: 100%;
  min-height: 450px;
  margin-top: 50px;
}
.home {
  display: flex;
  flex-direction: column;
  color: var(--default-color);
  background-color: var(--surface-color);
  padding: 32px 32px 24px 32px;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}
.welcome {
  margin: auto;
}
.welcome img {
  display: block;
  margin: 0 auto;
  width: 350px;
}
.container {
  display: flex;
  width: 100%;
  min-height: 750px;
  margin-top: 50px;
}
.child {
  flex: 1;
  padding: 10px;
  width: 40%;
  max-width: 580px;
  min-height: 750px;
}
.child:first-child {
  margin-right: 10px;
}
.signup {
  color: var(--default-color);
  background-color: var(--surface-color);
  max-width: 1160px;
  min-height: 750px;
  margin: 0 auto;
  padding: 32px 32px 24px 32px;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}
.signup > div {
  margin-top: 10px;
}
.logo {   
  display: block;
  margin: 0 auto;
  height: 90px;
  padding: 0 30px 0 0;
}
.form_header {
  display: grid;
  grid-template-columns: 2fr 8fr;
  margin-top: 0px !important;
}
.form_header img {   
  display: block;
  margin: 0 auto;
  height: 90px;
  padding: 0 30px 0 0;
}
.form_actions {
  margin-top: 20px;
}
.vert_bar {
  border-left: solid 5px var(--gold-color);
  padding: 0 30px;
  line-height: 1.5;
  font-size: 0.90em;
}
.header_bar {
  background-color: black;
  color: white;
  font-size: 0.90em;
  text-align: right;
  padding: 5px 20px;
  margin-left: -32px;
  margin-right: -32px;
}
.hidden { 
  visibility: hidden;
}
.nomin { 
  min-width: unset !important;
}
.row {
  display: flex;
  flex-direction: column;
}
.row_header {
  background-color: var(--gold-color);
  color: white;
  padding: 5px 10px;
  letter-spacing: .25em;
  border-radius: .28571429rem;
  margin: 10px 0;
}
.font_gold {
  color: var(--gold-color);
}
.title {
  font-size: 2em;
  letter-spacing: .25em;
}
.payment {
  margin: 0 auto 0 0;
}
.details {
  margin: 0 0 0 auto;
}
.details img {
  display: block;
  margin: 0 auto;
  width: 350px;
}
.section {
  display: flex;
  flex-direction: column;
  color: var(--default-color);
  background-color: var(--surface-color);
  padding: 32px 32px 24px 32px;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
  min-height: 665px;
}
.section div {
  margin-top: 10px;
}
.section > div:first-of-type {
  margin-top: 40px;
}
.invoice {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.invoice div {
  flex-basis: 50%;
}
.footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* justify-content: flex-end; */
}
.poweredBy {
  display: flex;
  font-size: 12px;
  vertical-align: baseline;
  margin-right: 0;
  justify-content: flex-end;
}
.poweredBy img {
  margin: 0px 20px 0px 10px;
  vertical-align: baseline;
  width: 93px;
  height: unset;
  padding: unset;
}
.thankyou {
  margin-top: 40px !important;
  flex-grow: 1;
}
.error {
  margin: auto !important;
}