/* ==========================================================================
    TABLE OF CONTENTS
    ==========================================================================
    1. Variables & Mixins
    2. Reset & Base Styles
    3. Typography
    4. Layout & Grid
    5. Header
    6. Sidebar
    7. Main Content
    8. Forms
    9. Modals & Dialogs
    10. Notifications & Alerts
    11. Pagination
    12. Breadcrumbs
    13. Tabs & Accordions
    14. Tooltips & Popovers
    15. Loaders & Spinners
    16. Media
    17. Footer
    18. Utility Classes
    19. Animations & Transitions
    20. Responsive / Media Queries
    21. Print Styles
    22. Dark Mode / Theme Overrides
    ========================================================================== */
/* ==========================================================================
    1. Variables & Mixins
    ========================================================================== */
.highlight-blue-small, .highlight-blue, .highlight-red-small, .highlight-red, .highlight {
  color: #fff;
  padding: 1rem;
  margin-right: 1rem;
  border-radius: 15px;
}

.h7, h6, h5, h4, h3, h2, h1 {
  font-weight: 500;
}

.footer-link, .forgot-password-link, .hide-decoration {
  text-decoration: none;
  color: inherit;
}

.gsi-button-container, .menubar-logo {
  display: flex;
  align-items: center;
}

.footer-content, .input-base-item, .input-base-container, .pricing-section-container, .info-section-container, .info-section, .data-section-container .card, .data-section-container, .features-section-container .mini-card, .subscription-card .brief, .subscription-card, .login-container, .section, .container-alt, .container, .main-page {
  display: flex;
  flex-direction: column;
}

.auth-button-group, .footer-section, .pricing-section, .join-section-container, .join-section, .data-section-container .card-list, .data-section, .features-section-container .card-container, .features-section-container, .pricing-table, .subscription-card .brief .head, .payment-card-section, .sub-section, .additional-file-input {
  display: flex;
  flex-direction: row;
}

/* 18.6 Media Queries & Responsive Utilities */
/* ==========================================================================
    2. Reset & Base Styles
    ========================================================================== */
html {
  font-family: "Inter", sans-serif;
  color: #fff;
  background: #000000;
  background-image: linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 50px 50px;
  background-attachment: fixed;
  scroll-padding-top: 5rem;
  min-height: 100%;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

main {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

/* ==========================================================================
    3. Typography
    ========================================================================== */
h1 {
  font-size: 48px;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

h5 {
  font-size: 1.25rem;
  margin-bottom: 0.125rem;
}

h6 {
  font-size: 1rem;
  margin-bottom: 0.0625rem;
}

.h7 {
  font-size: 0.875rem;
  margin-bottom: 0;
}

.shallow {
  padding: 0;
  margin: 0.5rem;
}

.hide-decoration {
  flex: 1;
}

.highlight {
  background-color: #000000;
  margin-left: 1rem;
  flex: 1;
}
.highlight:hover {
  background-color: #282828;
  transition: color 0.3s ease;
}

.highlight-red {
  background-color: #ff1654;
}
.highlight-red:hover {
  background-color: rgba(255, 22, 84, 0.5);
  transition: color 0.3s ease;
}

.highlight-red-small {
  background-color: #ff1654;
  padding: 0.125rem 0.5rem 0.125rem 0.5rem;
  margin: 0;
  white-space: nowrap;
}

.highlight-blue {
  background-color: #247ba0;
}

.highlight-blue-small {
  background-color: #247ba0;
  padding: 0.125rem 0.5rem 0.125rem 0.5rem;
  margin: 0;
}

.forgot-password-link {
  color: #aaaaaa;
  font-size: 0.875rem;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}
.forgot-password-link:hover {
  color: #fff;
  transition: color 0.3s ease;
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
.text-gradient {
  background: linear-gradient(135deg, #247ba0, #ff1654, #247ba0);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer 7s linear infinite;
}

.text-highlight-blue {
  color: #247ba0;
}

.text-highlight-red {
  color: #ff1654;
}

.subtext {
  font-size: 1.25rem;
  line-height: 1.5rem;
  letter-spacing: 0.03125rem;
  color: #aaaaaa;
  max-width: min(600px, 100%);
}

.subtext-full {
  font-size: 1.25rem;
  line-height: 1.5rem;
  letter-spacing: 0.03125rem;
  color: #aaaaaa;
}

/* ==========================================================================
    4. Layout & Grid
    ========================================================================== */
.full-width {
  width: 100%;
}

.main-page {
  justify-content: center;
  align-items: center;
  height: 100%;
}

.container {
  justify-content: center;
  align-items: flex-start;
  padding: 1rem;
  max-width: min(1000px, 100%);
  height: 100%;
  margin-bottom: 4rem;
}

.container-alt {
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 4rem;
  background-color: rgba(68, 65, 64, 0.5);
}

.section {
  justify-content: flex-start;
  width: 100%;
  line-height: 1rem;
}

.title-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}
.title-logo h1 {
  font-weight: 1000;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 0.5rem;
}

.introduction {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

.left-margin {
  margin-left: 1rem;
}

.right-margin {
  margin-right: 1rem;
}

.login-container {
  align-items: center;
  background-color: #282828;
  padding: 2rem;
  margin-bottom: 5rem;
  border-radius: 10px;
  width: 300px;
}
@media screen and (max-width: 380px) {
  .login-container {
    width: 250px;
  }
}

.close-button {
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid oklch(100% 0 0deg / 0.15);
  background-color: oklab(100% 0 0 / 0.045);
  color: #fff;
  font-size: 16px;
}
.close-button:hover {
  background-color: oklab(100% 0 0 / 0.15);
}
.close-button:active {
  background-color: oklab(100% 0 0 / 0.045);
}

.error-popup {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5.7px);
  -webkit-backdrop-filter: blur(5.7px);
  z-index: 1000;
}
.error-popup-center {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 200px;
  width: 500px;
  background-color: oklch(45.5% 0.188 13.697deg);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 15px;
}
.error-popup-footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: oklab(100% 0 0 / 0.09);
}

.success-popup {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5.7px);
  -webkit-backdrop-filter: blur(5.7px);
  z-index: 1000;
}
.success-popup-center {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 200px;
  width: 500px;
  background-color: oklch(43.7% 0.078 188.216deg);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 15px;
}
.success-popup-footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: oklab(100% 0 0 / 0.09);
}

.additional-file-input-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  .additional-file-input {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
  }
}

.sub-section {
  align-items: flex-end;
  justify-content: flex-start;
  gap: 1rem;
}

.payment-card-section {
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  gap: 1rem;
  flex-wrap: wrap;
}
@media screen and (min-width: 600px) and (max-width: 959px) {
  .payment-card-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
@media screen and (max-width: 599px) {
  .payment-card-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

@media screen and (min-width: 600px) {
  .hide-on-large {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .hide-on-mobile {
    display: none;
  }
}

.text-icon {
  display: flex;
  flex-direction: col;
  align-items: center;
  max-width: min(800px, 100%);
}

/* ==========================================================================
    5. Header
    ========================================================================== */
header {
  position: sticky;
  top: 0;
  z-index: 4;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
}

.menubar {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  margin: 0.5rem;
  gap: 1rem;
  max-width: min(1000px, 100%);
  height: 3rem;
  padding: 0.25rem;
}
@media screen and (max-width: 700px) {
  .menubar-links {
    display: none;
  }
}
.menubar-logo {
  gap: 0.1rem;
  align-items: center;
}
.menubar-logo h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  padding: 0 0 0 0.5rem;
  margin: 0;
}
.menubar .nav-links {
  font-size: 0.875rem;
  font-weight: 600;
  color: #aaaaaa;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  /* Underline styles - details of technique here: https://nickymeuleman.netlify.app/blog/css-animated-wrapping-underline */
}
.menubar .nav-links a {
  background: linear-gradient(to right, #000000, #247ba0), linear-gradient(to right, #000000, #ff1654, #247ba0);
  background-size: 100% 0.1em, 0 0.1em;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 400ms;
}
.menubar .nav-links a:hover,
.menubar .nav-links a:focus {
  background-size: 0 0.1em, 100% 0.1em;
  color: #fff;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
    6. Sidebar
    ========================================================================== */
/* 6.1 Sidebar Navigation */
/* 6.2 Sidebar Widgets */
/* ==========================================================================
    7. Main Content
    ========================================================================== */
/* 7.1 Hero / Banner */
/* 7.2 Cards */
.payment-card-selected {
  border: 1px solid #ff1654;
  border-radius: 10px;
  /* box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px; */
}

.subscription-card {
  min-width: 17rem;
}
.subscription-card .brief {
  justify-content: flex-start;
  padding: 1rem;
  background-color: #111111;
  border-radius: 10px;
}
.subscription-card .brief .head {
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.subscription-card .brief .subtitle {
  font-size: 0.8rem;
  letter-spacing: 0.02rem;
  margin: 0;
}

.pricing-table {
  justify-content: center;
  align-items: center;
  width: min(850px, 100%);
  padding: 0;
}
.pricing-table table {
  table-layout: fixed;
  width: 100%;
  margin: 10px auto;
  border-collapse: collapse;
}
.pricing-table th,
.pricing-table td {
  padding: 0.6em;
  text-align: left;
  border-bottom: 2px solid #247ba0;
}
.pricing-table tr :nth-child(2),
.pricing-table tr :nth-child(3),
.pricing-table tr :nth-child(4) {
  text-align: right;
  width: 15%;
}
.pricing-table tr :nth-child(1) {
  text-align: left;
  width: 35%;
}
.pricing-table tfoot tr :nth-child(1) {
  text-align: right;
}

.main-banner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 1rem 2rem 1rem 0;
  margin-bottom: 4rem;
  box-sizing: border-box;
  text-align: center;
  background-color: #282828;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
}
.main-banner p {
  margin: 0;
  padding: 0;
}
.main-banner .values-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
.main-banner .value-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.5rem;
}
.main-banner .value-item:nth-child(2n)::before {
  background-color: #e2003c;
  box-shadow: 0 0 10px #e2003c;
}
.main-banner .value-item::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #247ba0;
  box-shadow: 0 0 10px #247ba0;
}
.main-banner .value-item::before,
.main-banner .value-item::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.features-section-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .features-section-container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.features-section-container h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}
.features-section-container p {
  font-size: 1.25rem;
  letter-spacing: 0.0625rem;
}
.features-section-container .card-container {
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.features-section-container .mini-card {
  align-items: flex-start;
  justify-content: flex-start;
  border-left: 0.125rem solid #247ba0;
  margin: 0 1rem 1rem 0;
  padding: 0 1rem;
  width: 200px;
  letter-spacing: 0.0625rem;
}
.features-section-container .mini-card:hover {
  border-left: 0.125rem solid #ff1654;
}
.features-section-container .mini-card .caps {
  text-transform: uppercase;
  line-height: 1.5rem;
  color: #aaaaaa;
  margin: 0.5rem 0;
}
.features-section-container .home-img {
  width: 100%;
  box-shadow: 8px 8px teal;
}
@media screen and (max-width: 900px) {
  .features-section-container .home-img {
    max-width: 450px;
  }
}

.data-section {
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}
.data-section-container {
  justify-content: flex-start;
  align-items: flex-start;
  width: min(1000px, 100%);
  margin: 1rem;
}
@media screen and (max-width: 900px) {
  .data-section-container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.data-section-container h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}
.data-section-container p {
  font-size: 1.25rem;
  letter-spacing: 0.0625rem;
}
.data-section-container .card-list {
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}
.data-section-container .card {
  align-items: flex-start;
  width: min(100%, 300px);
}
.data-section-container .card h3 {
  font-weight: 700;
}
.data-section-container .card p {
  font-size: 1rem;
  /* letter-spacing: 0.0625rem; */
}
.data-section-container .image {
  width: min(100%, 300px);
  box-shadow: 6px 6px #ff1654;
}

.join-section {
  width: 100%;
  margin-bottom: 4rem;
  justify-content: center;
  align-items: flex-start;
}
.join-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}
.join-section p {
  font-size: 1.25rem;
  letter-spacing: 0.0625rem;
}
.join-section-container {
  width: min(100%, 1000px);
  justify-content: space-between;
  align-items: flex-start;
  margin: 1rem;
}
@media screen and (max-width: 900px) {
  .join-section-container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.join-section-container .text {
  width: min(100%, 800px);
}
.join-section-container .form {
  padding: 1rem;
}

.info-section {
  justify-content: center;
  align-items: center;
  width: 100%;
}
.info-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}
.info-section p {
  font-size: 1.25rem;
  letter-spacing: 0.0625rem;
}
.info-section li {
  font-size: 1.25rem;
  letter-spacing: 0.0625rem;
  line-height: 2.5rem;
  margin: 0.5rem;
}
.info-section .highlight {
  color: #e2003c;
}
.info-section {
  box-sizing: border-box;
}
.info-section-container {
  justify-content: flex-start;
  align-items: flex-start;
  width: min(1000px, 100%);
  margin: 1rem;
}
@media screen and (max-width: 900px) {
  .info-section-container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.info-section-container h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.signup-container {
  width: min(100%, 700px);
  background-color: #111111;
  margin: 0 1rem 0 0;
  border-radius: 8px 8px 0 0;
  box-sizing: border-box;
}
.signup-container .form-input {
  width: 100%;
}
.signup-container::before {
  display: block;
  content: "";
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 8px 8px 0 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff1654, #247ba0);
}

.pricing-section {
  width: 100%;
  margin-bottom: 4rem;
  justify-content: center;
  align-items: center;
}
.pricing-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
}
.pricing-section p {
  font-size: 1.25rem;
  letter-spacing: 0.0625rem;
}
.pricing-section-container {
  width: min(100%, 1000px);
  justify-content: center;
  align-items: center;
  margin: 1rem;
}
.pricing-section-container h1 {
  font-weight: 700;
}

.footer-section {
  width: 100%;
  margin-bottom: 4rem;
  justify-content: center;
  align-items: flex-start;
}
.footer-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}
.footer-section p {
  font-size: 1.25rem;
  letter-spacing: 0.0625rem;
}
.footer-section-container {
  width: min(100%, 1000px);
  justify-content: space-between;
  align-items: flex-start;
  margin: 1rem;
}
@media screen and (max-width: 900px) {
  .footer-section-container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer-section-container .text {
  width: min(100%, 800px);
}
.footer-section-container .form {
  padding: 1rem;
}

/* 7.3 Tables */
/* 7.4 Lists */
/* ==========================================================================
    8. Forms
    ========================================================================== */
.input-base:focus {
  outline: none;
  border-color: #000000;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.input-base-container p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06125rem;
}
.input-base-item {
  margin-bottom: 1rem;
  padding: 0.25rem 0.5rem 0.25rem 0.5rem;
  background-color: #111111;
  color: #fff;
  border-radius: 10px;
  border: 1px solid #fff;
  box-sizing: border-box;
  font-size: 1rem;
}
.input-base-item:focus {
  outline: 3px solid #247ba0;
}
.input-base-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
@media screen and (max-width: 599px) {
  .input-base-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

.error-message {
  color: #ff1654;
  font-size: 0.875rem;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}

.submit-button {
  background-color: #247ba0;
  color: #fff;
  border: none;
  margin: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.submit-button:hover {
  background-color: rgb(88.6274509804%, 0%, 23.583270218%);
}
.submit-button:active {
  background-color: rgb(68.6274509804%, 0%, 18.2613818059%);
}

.submit-button-wide {
  background-color: #aaaaaa;
  color: #000000;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 7px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  transition: color 0.3s ease;
  width: 100%;
  font-size: 1rem;
}
.submit-button-wide:hover {
  background-color: rgb(88.6274509804%, 0%, 23.583270218%);
  color: #fff;
}
.submit-button-wide:active {
  background-color: rgb(68.6274509804%, 0%, 18.2613818059%);
}

.upload-button {
  background-color: #ff1654;
  color: #fff;
  border: none;
  margin: 0.5rem;
  padding: 0.5rem 1rem;
  font-weight: 700;
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.upload-button:hover {
  background-color: black;
}
.upload-button:active {
  background-color: rgb(68.6274509804%, 0%, 18.2613818059%);
}

.remove-button {
  color: #000000;
  border: none;
  margin: 0;
  padding: 0 0.75rem;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.remove-button:hover {
  background-color: rgb(68.6274509804%, 0%, 18.2613818059%);
}
.remove-button:active {
  background-color: rgb(68.6274509804%, 0%, 18.2613818059%);
}

@keyframes spin-pause {
  0% {
    transform: rotate(0deg);
  }
  33.333% {
    transform: rotate(180deg);
  } /* rotation done at 1s */
  100% {
    transform: rotate(180deg);
  } /* hold until 3s */
}
.spinner {
  animation: spin-pause 1.5s linear infinite;
}

.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.125rem 1rem;
  background: linear-gradient(90deg, #ff1654, #247ba0);
  color: #fff;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid transparent;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.cta-button:hover {
  box-shadow: 0 0 20px #247ba0;
  transform: translateY(-2px);
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  background-color: #000000;
  border-radius: 3px;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.auth-button-group {
  padding: 0.25rem;
  margin: 0.5rem;
  background-color: rgb(11.2121212121%, 10.7174688057%, 10.5525846702%);
  border: 2px solid #444140;
  border-radius: 24px;
}
.auth-button-group .auth-loans {
  padding: 0.4rem 0.8rem;
  background-color: #444140;
  border-radius: 15px 0 0 15px;
  border: 2px solid #444140;
}
.auth-button-group .auth-loans:hover {
  background-color: rgb(16.3636363636%, 15.6417112299%, 15.4010695187%);
}
.auth-button-group .auth-loans:active {
  background-color: rgb(11.2121212121%, 10.7174688057%, 10.5525846702%);
  border: 2px solid #444140;
}
.auth-button-group .auth-pro {
  padding: 0.4rem 0.8rem;
  background-color: #444140;
  border-radius: 0 15px 15px 0;
  border: 2px solid #444140;
}
.auth-button-group .auth-pro:hover {
  background-color: rgb(16.3636363636%, 15.6417112299%, 15.4010695187%);
}
.auth-button-group .auth-pro:active {
  background-color: rgb(11.2121212121%, 10.7174688057%, 10.5525846702%);
}
.auth-button-group .auth-selected {
  background-color: rgb(11.2121212121%, 10.7174688057%, 10.5525846702%);
}

.separator {
  border: 1px solid #444140;
  width: 90%;
  margin: 2rem;
}

.focused {
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
  background-color: #247ba0;
  border: solid 1px #fff;
}

.gsi-button-container {
  margin: 1rem;
}

/* ==========================================================================
    9. Modals & Dialogs
    ========================================================================== */
/* ==========================================================================
    10. Notifications & Alerts
    ========================================================================== */
/* 10.1 Toast Messages */
/* 10.2 Inline Alerts */
/* 10.3 Badges & Tags */
.purple-tag {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 10px;
  font-size: 0.75rem;
  color: #fff;
}

.purple-tag {
  background-color: #9000b1;
}

/* ==========================================================================
    11. Pagination
    ========================================================================== */
/* ==========================================================================
    12. Breadcrumbs
    ========================================================================== */
/* ==========================================================================
    13. Tabs & Accordions
    ========================================================================== */
/* ==========================================================================
    14. Tooltips & Popovers
    ========================================================================== */
/* ==========================================================================
    15. Loaders & Spinners
    ========================================================================== */
/* ==========================================================================
    16. Media
    ========================================================================== */
/* 16.1 Images & Avatars */
/* 16.2 Video & Embeds */
/* 16.3 Icons */
/* ==========================================================================
    17. Footer
    ========================================================================== */
/* 17.1 Footer Navigation */
/* 17.2 Footer Info & Legal */
/* ==========================================================================
    18. Utility Classes
    ========================================================================== */
/* 18.1 Spacing (Margins & Padding) */
/* 18.2 Display & Visibility */
/* 18.3 Flexbox & Alignment */
/* 18.4 Text Alignment & Colors */
/* 18.5 Borders & Shadows */
/* ==========================================================================
    19. Animations & Transitions
    ========================================================================== */
.shrinking-horizontal-bar {
  width: 100%;
  height: 4px;
  background-color: #fff;
  animation: shrink-horizontal 3s ease-in-out infinite;
}
@keyframes shrink-horizontal {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}

/* ==========================================================================
    20. Responsive / Media Queries
    ========================================================================== */
/* 20.1 Mobile (max-width: 576px) */
/* 20.2 Tablet (max-width: 768px) */
/* 20.3 Desktop (max-width: 1024px) */
/* 20.4 Large Desktop (min-width: 1200px) */
/* ==========================================================================
    21. Print Styles
    ========================================================================== */
/* ==========================================================================
    22. Dark Mode / Theme Overrides
    ========================================================================== */
/* ==========================================================================
    23. Cookie Consent Banner & Policy
    ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  display: flex;
  justify-content: center;
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.cookie-banner-inner {
  max-width: 860px;
  width: 100%;
}
.cookie-banner-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}
.cookie-banner-text {
  font-size: 0.875rem;
  color: #e3e3e3;
  margin: 0 0 0.875rem;
  line-height: 1.5;
}
.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner-details {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.cookie-banner-details.open {
  display: block;
}

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category-info {
  flex: 1;
  padding-right: 1.25rem;
}
.cookie-category-name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.cookie-category-desc {
  font-size: 0.8rem;
  color: #aaaaaa;
  margin: 0;
  line-height: 1.4;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #247ba0;
}
.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(20px);
}
.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.55;
  cursor: not-allowed;
}
.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #aaaaaa;
  border-radius: 24px;
  transition: background-color 0.25s ease;
}
.cookie-toggle-slider::before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.25s ease;
}

.cookie-required-badge {
  font-size: 0.68rem;
  background-color: rgba(170, 170, 170, 0.4);
  color: #e3e3e3;
  padding: 0.1rem 0.4rem;
  border-radius: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.cookie-customise-btn {
  background: none;
  border: none;
  color: #aaaaaa;
  font-size: 0.875rem;
  cursor: pointer;
  padding: 0.5rem 0;
  font-family: "Inter", sans-serif;
}
.cookie-customise-btn:hover {
  color: #fff;
  transition: color 0.2s ease;
}

.cookie-policy-section {
  width: 100%;
  margin-bottom: 2rem;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  margin: 0.75rem 0 0;
  border-radius: 15px;
  overflow: hidden;
}
.cookie-table th,
.cookie-table td {
  text-align: left;
  padding: 0.55rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.cookie-table th {
  font-weight: 600;
  color: #e3e3e3;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(0, 0, 0, 0.25);
}
.cookie-table td {
  color: #e3e3e3;
}
.cookie-table td code {
  background: rgba(0, 0, 0, 0.35);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-size: 0.8rem;
}
.cookie-table tr:last-child td {
  border-bottom: none;
}

.cookie-preferences-card {
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
}

.cookie-policy-legal-basis {
  font-size: 0.82rem;
  color: #aaaaaa;
  background: rgba(0, 0, 0, 0.2);
  border-left: 3px solid #247ba0;
  padding: 0.5rem 0.875rem;
  border-radius: 0 10px 10px 0;
  margin: 0.5rem 0 1rem;
}

.footer-link {
  color: #aaaaaa;
  font-size: 0.82rem;
}
.footer-link:hover {
  color: #fff;
  transition: color 0.2s ease;
}

.footer-content {
  align-items: center;
  max-width: min(1000px, 100%);
}

.footer-separator {
  color: #aaaaaa;
  margin: 0.5rem 0.4rem;
  font-size: 0.82rem;
}

/**
* Effects
*/
.glass {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  margin: 0.5rem;
}

.generic-stroke {
  border: 1px solid #fff;
}

.muted-stroke {
  border: 1px solid #aaaaaa;
}

.no-border {
  border: none;
}

.no-margin {
  margin: 0;
}

.no-bottom-margin {
  margin-bottom: 0;
}

.no-top-margin {
  margin-top: 0;
}

.no-padding {
  padding: 0;
}

.bottom-padding {
  padding: 0 0 1rem 0;
}

.highlighted-background {
  background-color: #e3e3e3;
}

.accented-background-light {
  background-color: rgba(69, 105, 144, 0.5);
}

/*# sourceMappingURL=styles.css.map */
