:root {
  --white-color: #ffffff;
  --black-color: #000000;
  --error-color: #ff1c44;
  --white-color-light: #d7dbf5;
  --dark-blue-color: #204c8a;
  --titan-logo-color: #22326e;
  --main-text-color: #373736;
  --secondary-text-color: #7981b2;
  --alternative-text-color: #aeaeae;
  --strength-text-color: #636566;
  --secondary-background-color: #fafcfd;
  --secondary-inputField-color: #e3e6fa;
  --main-border-color: #a9afd9;
  --secondary-border-color: #d4d4d4;
  --another-text-color: #373736;
  --surface-700: #605f5e;
  --divider-color: #e5e7eb;
  --surface-A3: #a3a3a3;
}

* {
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
}

input::-ms-reveal,
input::-ms-clear {
  display: none;
}

html,
body {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  margin: 0px;
  background-color: var(--white-color);
  font-size: 14px;
  line-height: 1.42857143;
  padding: 0px !important;
}

p {
  margin: 0;
}

a {
  color: var(--main-text-color);
  text-decoration: underline;
  font-size: 12px;
  font-weight: 400;
}

/* 
  STRUCTURE:
  LEFT | RIGHT (NAV (header)) SIDES
  ------------------
  MODAL
  MOBILE
  */

/* HEADER START */
nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 16px 29px;
  background-color: var(--white-color);
}

nav img {
  padding-left: 2px;
}

.anyQuestion-desktop {
  display: block;
}

.anyQuestion-mobile {
  display: none;
}

nav a {
  display: flex;
  gap: 8px;
  flex-direction: row;
  color: var(--main-text-color);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
}
/* HEADER END */

/* BODY, MAIN CONTAINER */
.main-container {
  display: flex;
  height: 100%;
}

/* BODY, LEFT SIDE START */
.left-side {
  flex: 1 0 600px;
  background-image: url("https://tap.titanamerica.com/B2CUserFlows/Template/Main/img/background.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  color: var(--white-color);

  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.left-side .content {
  width: 80%;
  height: 90%;
  margin: 0px 0px 0px 0px;
}

#titanLogoContainer {
  display: flex;
  flex-direction: row;
  gap: 35px;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 76.37px;
}

#titleContainer {
  display: flex;
  flex-direction: column;
}

#p1Container {
  display: flex;
  flex-direction: column;
  text-align: left;
}

#titanTitle {
  font-size: 44px;
  font-weight: 800;
  line-height: 48.4px;
  letter-spacing: 0px;
  text-align: left;
  margin: 0px 0px 4px 0px;
  color: var(--titan-logo-color);
}

#tapTitle {
  font-size: 44px;
  font-weight: 800;
  line-height: 48.4px;
  letter-spacing: 0px;
  color: var(--white-color);
}

#tapDivider {
  border-left: var(--white-color) 1px solid;
  height: 53.84px;
}

#p1Title,
#p2Title {
  font-size: 28px;
  font-weight: 300;
  line-height: 30.8px;
  letter-spacing: 0px;
  color: var(--black-color);
}

.left-side h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 48.4px;
  letter-spacing: 0px;
  text-align: left;
  margin: 0px 0px 4px 0px;
  color: var(--black-color);
}

.left-side .p1 {
  margin: 19px 0px 32px 0px;
  font-size: 20px;
  font-weight: 300;
  line-height: 25px;
  letter-spacing: 0px;
  text-align: left;
  color: var(--black-color);
}
/* BODY, LEFT SIDE END */

/* BODY, RIGHT SIDE START */
.right-side-wrapper {
  flex: 1 0 760px;
  background-color: var(--secondary-background-color);
}

.right-side {
  display: flex;
  height: calc(100% - 48px);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: start;
}

#goBackLink {
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.4px;
  color: var(--main-text-color);
  text-decoration: none;
}

#goBackIcon {
  font-size: 20px;
  color: #adcc4c;
  position: relative;
  top: 1px;
}

#api .error {
  color: var(--error-color);
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}

.footer {
  margin-top: 20px;
  display: flex;
  right: 0px;
}

.mobile-header {
  display: none;
}

.footer-divider {
  display: none;
}

.footer-buttons {
  justify-content: left;
  color: var(--secondary-text-color);
}

.footer-buttons a {
  color: var(--alternative-text-color);
  font-size: 12px;
  line-height: 24px;
  font-weight: 300;
  text-decoration: none;
  padding: 0px 5px;
}
/* BODY, RIGHT SIDE END */

/* MOBILE START */
@media only screen and (max-width: 640px) {
  nav {
    height: 40px;
    padding: 0px 19px 0px 30px;
    background-color: transparent;
  }

  #goBackIcon {
    color: var(--primary-text-color);
  }

  #titanLogoContainer {
    margin-bottom: 20px;
  }

  #tapDivider {
    height: 33px;
    margin-bottom: 3px;
  }

  #p1Title,
  #p2Title {
    font-size: 18px;
    font-weight: 300;
    line-height: 110%;
    letter-spacing: 0px;
    color: var(--black-color);
  }

  .mobile-header {
    display: flex;
  }

  .footer-buttons a {
    font-size: 11px;
  }

  .right-side-wrapper {
    background-color: transparent;
  }

  .anyQuestion-desktop {
    display: none;
  }

  .anyQuestion-mobile {
    display: flex;
  }

  .anyQuestion-mobile a {
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 0.4px;
    color: var(--dark-blue-color);
  }

  .main-container {
    display: block;
    background-image: url("https://tap.titanamerica.com/B2CUserFlows/Template/Main/img/background-mobile.svg");
    background-repeat: no-repeat;
    background-size: cover;
  }

  .left-side {
    display: none;
  }

  .right-side {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .footer {
    display: flex;
    padding: 0px;
    justify-content: center;
    flex-direction: column;
    height: 76px;
    align-items: start;
    align-content: center;
    background-color: var(--white-color);
    width: 100%;
    position: absolute;
    bottom: 0;
    margin-left: -35px;
  }

  .footer-divider {
    border: 1px solid var(--white-color-light);
    width: 100%;
    border-radius: 24px;
  }

  .footer-buttons {
    display: flex;
    margin-left: 32px;
  }
}
/* MOBILE END */
