/* =========================================
   1. BASE PALETTE (The Raw Colors)
   ========================================= */
/* =========================================
   2. SEMANTIC COLORS (How we use them)
   ========================================= */
/* =========================================
   3. TYPOGRAPHY (Fonts & Sizes)
   ========================================= */
*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #FFFFFF;
  color: #1B1B1B;
  line-height: 1.5;
}

input, button, textarea, select {
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

p {
  font-size: 0.8rem;
  color: #B5B5B5;
}

a {
  text-decoration: underline;
  color: #1F1F21;
}
a:hover {
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
}

.btn {
  width: 100%;
  outline: none;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn__dark {
  padding: 0.8rem 2.5rem;
  background-color: #1F1F21;
  color: #FFFFFF;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .btn__dark {
    padding: 0.6rem 2rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .btn__dark {
    padding: 0.7rem 2.2rem;
  }
}
.btn--submit {
  margin-top: 0.5rem;
}
.btn--submit:hover {
  opacity: 0.9;
}
.btn__white {
  padding: 0.7rem 2.5rem;
  background-color: #FFFFFF;
  color: #1F1F21;
  border: 2px solid #E6E6E6;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .btn__white {
    padding: 0.6rem 2rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .btn__white {
    padding: 0.7rem 1.6rem;
    flex-wrap: wrap;
  }
}
.btn--google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn--google .icon-google {
  width: 1.6rem;
  height: 1.6rem;
}
.btn--google:hover {
  opacity: 0.9;
  background-color: #E6E6E6;
}
.btn--x {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.btn--x:hover {
  opacity: 0.9;
}
.btn--x .icon-x {
  width: 1.1rem;
  height: 1.1rem;
  filter: invert(1);
}

.signup-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  height: 100vh;
  overflow-x: hidden;
  /* Add this inside your @include respond-to('mobile') block */
}
.signup-layout .mobile-nav {
  display: none; /* Hidden by default */
}
@media (max-width: 767px) {
  .signup-layout {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }
  .signup-layout .mobile-nav {
    display: flex;
    align-self: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem;
    margin-bottom: 2rem;
  }
  .signup-layout .mobile-nav__toggle {
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  .signup-layout .mobile-nav__toggle svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #1F1F21;
  }
  .signup-layout .mobile-nav__toggle:hover {
    background-color: #E6E6E6;
  }
  .signup-layout .mobile-nav__toggle:hover svg {
    transform: scale(1.1) rotate(90deg);
  }
  .signup-layout .mobile-nav__toggle:active svg {
    transform: scale(0.95);
  }
  .signup-layout .mobile-nav__logo {
    font-size: 1.15rem;
    font-weight: 900;
    color: #1F1F21;
    outline: none;
    border: none;
    fill: #FFFFFF;
  }
  .signup-layout .mobile-nav__menu {
    display: none; /* Hidden by default */
  }
  .signup-layout .mobile-nav__menu:last-child {
    border-bottom: none;
  }
  .signup-layout {
    /* JavaScript will add this class to show the menu */
  }
  .signup-layout .mobile-nav__menu.is-active {
    display: block;
    padding: 0.8rem 0;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
  }
}
.signup-layout__hero {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
}
.signup-layout__hero > header, .signup-layout__hero > form, .signup-layout__hero > .hero_social {
  width: 100%;
  max-width: 400px; /* Keeps the content from stretching too wide on large screens */
  margin-bottom: 2rem;
}
.signup-layout__sidebar {
  padding: 4rem;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)), url("../images/windows-QxTTK-NhKsY-unsplash.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  border-radius: 5%;
  margin: 1rem;
}
@media (max-width: 767px) {
  .signup-layout__sidebar {
    display: none;
  }
}
.signup-layout__sidebar .glass-tag {
  position: absolute;
  background: rgba(255, 255, 255, 0.1490196078);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  color: #FFFFFF;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.signup-layout__sidebar .glass-tag strong {
  font-weight: 600;
}
.signup-layout__sidebar .glass-tag span {
  opacity: 0.8;
  font-size: 0.75rem;
}
.signup-layout__sidebar .tag-top-right {
  top: 10%;
  right: 15%;
}
.signup-layout__sidebar .tag-mid-right {
  top: 30%;
  right: 50%;
}
.signup-layout__sidebar {
  /* Ensuring the main text stays at the very bottom */
}
.signup-layout__sidebar .sidebar-content {
  width: 100%;
  margin-top: auto;
}
.signup-layout__sidebar .sidebar-content__title {
  color: #FFFFFF;
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.signup-layout__sidebar .sidebar-content__title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.signup-layout__sidebar .sidebar-content__footer {
  display: flex;
  gap: 3rem;
}
.signup-layout__sidebar .sidebar-content__footer .footer-description {
  background: transparent;
  border: 2px solid #FFFFFF;
  padding: 0.5rem 0.7rem;
  border-radius: 12px;
}
.signup-layout__sidebar .sidebar-content__footer .footer-description > h3 {
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 500;
}

.hero__header {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: #1B1B1B;
}
@media (max-width: 767px) {
  .hero__header {
    font-size: 2.2rem;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.form-group__label {
  display: block;
  margin-bottom: 0.4rem;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1F1F21;
}
.form-group__input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #E6E6E6;
  border-radius: 8px;
  font-size: 0.8rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group__input:not(:-moz-placeholder):invalid {
  border-color: #ef4444; /* A sharp red */
  color: #ef4444;
}
.form-group__input:not(:placeholder-shown):invalid {
  border-color: #ef4444; /* A sharp red */
  color: #ef4444;
}
.form-group__input:not(:-moz-placeholder):invalid:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1); /* Red glow */
}
.form-group__input:not(:placeholder-shown):invalid:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1); /* Red glow */
}
.form-group__input:not(:-moz-placeholder):valid {
  border-color: #22c55e; /* A clean green */
}
.form-group__input:not(:placeholder-shown):valid {
  border-color: #22c55e; /* A clean green */
}
.form-group__input:not(:-moz-placeholder):valid:focus {
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1); /* Green glow */
}
.form-group__input:not(:placeholder-shown):valid:focus {
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1); /* Green glow */
}
.form-group__input:focus {
  outline: none;
  border-color: #B5B5B5;
  box-shadow: 0 0 0 2px rgba(181, 181, 181, 0.2);
}

.hero__social {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1rem;
  width: 80%;
  margin-bottom: 1rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero__social {
    width: 100%;
  }
}

.divider {
  display: flex;
  align-items: center;
  color: #B5B5B5;
  font-size: 0.875rem;
  font-weight: 500;
  width: 80%;
  margin: 1rem 0;
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  border-bottom: 2px solid #E6E6E6;
}
.divider::before {
  margin-right: 1rem;
}
.divider::after {
  margin-left: 1rem;
}/*# sourceMappingURL=style.css.map */