/*
  --- Font-Size System (px) ---
  10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

  --- Colors ---
  Primary: #0099dc
  Tint-Primary: #33ade3

  Main-Gray: #373737
  Tint-Gray: #9b9b9b
  Shade-Gray: #1d1d1d
  Form-Gray: #f7f7f7

  Text-Gray: #555

  Main-White: #fff

  Main-Error: red
*/

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Rubik:wght@400;500;600;700&display=swap");

@font-face {
  font-family: "proxima-nova";
  src: "https://b2c-identity-assets-prod-gxephkg4evhjd9hp.z01.azurefd.net/cdn-content/0.3.671.1/assets/fonts/ProximaNova.woff";
}

@font-face {
  font-family: "proxima-nova";
  src: "https://b2c-identity-assets-prod-gxephkg4evhjd9hp.z01.azurefd.net/cdn-content/0.3.671.1/assets/fonts/ProximaNova-bold.woff";
  font-weight: bold;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  /* 62.5% to make 1rem = 10px (easy to use) */
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: "Inter", proxima-nova, sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #373737;
}

/***********************************************************/
/** HEADER **/
/***********************************************************/
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background-color: #373737;
}

.main-nav {
  color: #fff;
}

.main-nav-list {
  list-style: none;
  display: flex;
}

.main-nav-link {
  padding: 1.4rem 1rem;
  font-size: 1.3rem;
  cursor: pointer;
  position: relative;
}

.main-nav-link:hover {
  background-color: #1d1d1d;
}

/* STYLE FOR ACTIVE GRAY HEADER ELEMENT */
.main-nav-link.active {
  background-color: #9b9b9b;
}

.main-nav-link.active::after {
  content: "";
  background-color: #9b9b9b;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  bottom: -10%;
  left: 40%;

  transform: translate(-50%, 0);
  transform: rotate(45deg);
}

.nav-anchor:link,
.nav-anchor:visited {
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
}

/***********************************************************/
/** SIGN SECTION **/
/***********************************************************/
.sign-section {
  min-height: 89vh;
  width: 100vw;
  max-width: 180rem;
  margin: 0 auto;
  background-color: #fff;
  padding: 2.5rem 15%;
}

.title-section {
  margin-top: 4rem;
}

.my-account {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.title {
  font-size: 2.6rem;
  font-weight: bold;
}

.sign-message {
  margin-top: 0.5rem;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
}

.main-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 3%;
  column-gap: 2%;
}

/***********************/
/*** FORM ***/
/***********************/
form {
  background-color: #f7f7f7;
  border-radius: 15px;
  border: 1px solid #e7e7e7;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
}

form .intro h2 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.428571429;
}

form .intro p {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.requiredContainer {
  display: flex;
  align-items: center;
}

.requiredParagraph {
  font-size: 1.4rem;
  font-weight: 500;
}

/* Error Form Element */
.pageLevel {
  margin: 2rem auto;
  padding: 2rem;
  border: 1px solid transparent;
  border-color: #dca7a7;
  border-radius: 4px;
  width: fit-content;
  line-height: 1.3;

  background-color: #ffd3c9;
}

.errorParagraph {
  color: #373737;
  font-size: 1.8rem;
  font-weight: 600;
}

#errorDivLogin{
  color: #373737;
  font-size: 1.8rem;
  font-weight: 600;

  ul{
    font-size: 0.9em !important;
    margin-inline-start: 2em !important;
  }
}

.ohio-message {
  color: #373737;
  font-size: 1.6rem;
  font-weight: 400;
}

#requiredFieldMissing {
  color: #373737;
  font-size: 1.5rem;
  font-weight: 500;
}
/* End Error Form Element */

#attributeList ul {
  list-style: none;
}

.entry-item,
.attrEntry {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.entry-item label,
.attrEntry label {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}

.entry-item input,
.attrEntry input {
  width: 100%;
  height: 3.6rem;
  border-radius: 5px;
  padding: 0.5rem;
  font-size: 1.6rem;
  border: 1px solid #b6bbba;
}

.entry-item input:focus,
.attrEntry input:focus {
  outline: none;
  border: 1px solid #33ade3;
}

.attrEntry select {
  margin-top: 0.5rem;
  max-width: 22rem;
  padding: 0.8rem 0.2rem;
  color: #555;
}

.error {
  color: red;
  font-size: 1.4rem;
}

.button {
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

.primary-button {
  background-color: #0099dc;
  color: #fff;
}

.primary-button:hover {
  background-color: #33ade3;
}

.primary-button:active {
  background-color: #0099dc;
}

.secondary-button {
  background-color: #6f7c7d;
  color: #fff;
}

.secondary-button:hover {
  background-color: #9b9b9b;
}

.secondary-button:active {
  background-color: #6f7c7d;
}

.cancelAnchor:link,
.cancelAnchor:visited,
.cancelAnchor:hover,
.cancelAnchor:active {
  color: #0056a2;
}
/***********************************************************/
/** END SIGN SECTION **/
/***********************************************************/

/***********************************************************/
/** FORM-EXTRA-OPTIONS **/
/***********************************************************/
.form-extra-options {
  padding: 5%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.line-padding-border-bottom {
  padding-bottom: 3rem;
  border-bottom: 1px solid #9b9b9b;
}

.extra-options-heading {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.2rem;
}

.extra-options-paragraph {
  margin-top: 1.1rem;
  font-size: 1.6rem;
  font-weight: 500;
}

.register-button {
  margin-top: 1.2rem;
  padding: 0.5rem 0.8rem;
  font-size: 1.4rem;
  width: 16rem;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  text-decoration: none;
}

.greater-btn-symbol {
  display: inline-block;
  padding: 0.1rem 0.6rem;
  background-color: #fff;
  color: #373737;
  border-radius: 50px;
  font-size: 1.8rem;
  margin-left: 0.8rem;
  text-align: center;
  line-height: 2.4rem;
}

.greater-left {
  margin-left: 0;
  margin-right: 0.6rem;
}

.other-regions-container {
  padding: 1rem 1.2rem;
  border-radius: 10px;
  border: 1px solid #1d1d1d;

  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.other-regions-icon {
  font-size: 2rem;
}

.other-regions-content .extra-options-paragraph {
  margin-top: 0.4rem;
}

.other-regions-container .extra-options-heading i {
  font-size: 1.6rem;
}

.related-anchor:link,
.related-anchor:visited,
.related-anchor:hover,
.related-anchor:active {
  text-decoration: underline;
}

/***********************************************************/
/** FOOTER **/
/***********************************************************/
.footer {
  height: 6.8vh;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #373737;
  color: #fff;
  padding: 2rem;
}

.copyright {
  font-size: 1.2rem;
  color: #fff;
}

.related-list {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.related-link {
  font-size: 1.4rem;
  text-decoration: underline;
  padding-right: 1.5rem;
  cursor: pointer;
  border-right: 1px solid #fff;
}

.related-list .related-link:last-child {
  border-right: 0;
}

.footer-anchor:link,
.footer-anchor:visited {
  text-decoration: none;
  color: #fff;
}

/***********************************************************/
/** TOOLTIP STYLE CLASSES **/
/***********************************************************/
.tooltip {
  display: inline;
  grid-template-columns: 1fr 1fr;
  row-gap: 0.5rem;
  padding: 1.4rem;
  transform: translate(0, 110%);
  font-size: 1.4rem;
  color: red;
}

.correct {
  color: green;
}

.condition-container {
  margin-top: 0.4rem;
}

.condition-container i {
  margin-right: 0.5rem;
}

.condition-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(4, 1fr);
}

/***********************************************************/
/** MODAL ELEMENT **/
/***********************************************************/
.modal {
  margin: auto;
  border: none;
  border-radius: 5px;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.5);
}

.modal-container {
  max-width: 100rem;
  display: flex;
  flex-direction: column;
}

.modal::backdrop {
  background-color: rgba(128, 128, 128, 0.4);
}

.modal-heading {
  font-weight: bold;
  font-size: 1.8rem;

  border-bottom: 1px solid rgb(229, 229, 229);
  padding: 1.4rem;
}

.modal-paragraph {
  display: inline-block;
  font-size: 1.6rem;
  padding: 2rem 1.4rem;
  border-bottom: 1px solid rgb(229, 229, 229);
}

.email-send-span {
  font-weight: 500;
}

.modal-actions-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 1.4rem;
}

.modal-btn {
  align-self: flex-end;

  text-decoration: none;

  padding: 0.6rem 2rem;
  font-size: 1.6rem;
  max-width: 10rem;
  margin: 0.6rem 1.4rem;
}

.modal-reset-btn {
  text-decoration: none;

  padding: 0.4rem 1.4rem;
  font-size: 1.8rem;
}

.modal-close-cancel {
  font-size: 1.4rem;
  text-decoration: underline;
}
/***********************************************************/
/** END MODAL ELEMENT **/
/***********************************************************/

/***********************************************************/
/** LOADING MODAL ELEMENT **/
/***********************************************************/
.loading-modal {
  background-color: #fff;
  border: none;
  border-radius: 5px;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loading-modal-title {
  color: #777 !important;
  font-size: 1.8rem;
  padding: 2rem;
}

.loading-border {
  width: 100%;
  border-bottom: 1px solid #777;
  margin-bottom: 1rem;
}

.loading-modal-p {
  color: #777;
  font-size: 1.4rem;
}

.loader {
    width: 4rem;
    height: 4rem;
    margin: 2rem 0;
    border: 5px solid #bbb;
    border-bottom-color: #0099dc;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    } 

.cnp-img-logo {
  display: block;
  margin: 0 auto 0.5rem auto;
}
/***********************************************************/
/** END LOADING MODAL ELEMENT **/
/***********************************************************/

/***********************************************************/
/** EXTRA APP WIDE HELPER CLASSES **/
/***********************************************************/
.hide {
  display: none !important;
}

.cnp-link-color {
  color: #00567f;
}

/*************************/
/** HIDE SOME INJECTED ELEMENTS **/
/*************************/
.helpLink {
  display: none;
}

#verifying_blurb {
  display: none;
}
