body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #f5f5fa;
}
.auth-split-bg {
  display: flex;
  min-height: 100vh;
}
.auth-left {
  background: linear-gradient(160deg,#7e4dc3 0%, #000000 100%);
  color: #fff;
  flex: 1.1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.auth-logo {
  position: absolute;
  top: 32px;
  left: 42px;
}
.auth-hero-graphic {
  margin-top: 70px;
  width: 380px;
  max-width: 90vw;
}
.auth-left-title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-top: 24px;
  line-height: 1.32;
}
.auth-right {
  flex: 1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-form-wrapper {
  width: 100%;
  max-width: 410px;
  margin: 0 auto;
  background: #fff;
  border-radius: 13px;
  padding: 36px 34px 26px 34px;
  box-shadow: 0 8px 32px rgba(96,77,255,.08);
}
.auth-title {
  font-size: 2rem;
  font-weight: 700;
  color: #23195f;
  margin-bottom: 7px;
  letter-spacing: -.5px;
}
.auth-subtitle {
  color: #626489;
  font-size: 1.1rem;
  margin-bottom: 28px;
}
.auth-form label {
  display: block;
  margin-top: 15px;
  margin-bottom: 4px;
  color: #292246;
  font-weight: 600;
  font-size: 1.04rem;
}
.auth-form input[type="email"], .auth-form input[type="text"], .auth-form input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 0;
  border-radius: 8px;
  border: 1.6px solid #eceaf2;
  background: #f6f7fb;
  font-size: 1.05rem;
  transition: border .15s;
  margin-top: 1px;
}
.auth-form input:focus {
  outline: none;
  border-color: #a37bfa;
}
.auth-google-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #444;
  border: 1.5px solid #eceaf2;
  font-weight: 600;
  border-radius: 8px;
  font-size: 1.07rem;
  padding: 10px 0 10px 0;
  margin-bottom: 17px;
  cursor: pointer;
  transition: box-shadow .14s, border .13s;
}
.auth-google-btn:hover {
  border-color: #a37bfa;
  box-shadow: 0 2px 12px #a37bfa26;
}
.auth-or-divider {
  text-align: center;
  margin: 15px 0 11px 0;
  font-size: 1.05rem;
  color: #b1b0c7;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 9px;
}
.auth-or-divider span {
  display: inline-block;
  flex: 1;
  height: 1px;
  background: #f1eefe;
  border-radius: 1px;
}
.auth-error {
  background: #ffe5e8;
  color: #d1333b;
  border-radius: 7px;
  padding: 10px 14px;
  margin-bottom: 8px;
  font-size: 1.03rem;
  text-align: center;
  font-weight: 500;
}
.auth-form .terms-agreement {
  margin: 18px 0 2px 0;
  font-size: 0.96rem;
  color: #8e8aad;
}
.auth-form .terms-agreement a {
  color: #684ffa;
  text-decoration: underline;
}
.auth-links {
  display: flex;
  justify-content: flex-end;
  margin: 6px 0 10px 0;
}
.auth-links a {
  color: #684ffa;
  font-size: 1.01rem;
  text-decoration: underline;
  font-weight: 500;
}
.auth-submit-btn {
  width: 100%;
  background: linear-gradient(90deg, #6d48ff 0%, #52e6fa 100%);
  color: #fff;
  font-size: 1.12rem;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  padding: 13px 0;
  margin: 8px 0 3px 0;
  cursor: pointer;
  box-shadow: 0 3px 22px #7755ff19;
  transition: background .14s;
}
.auth-submit-btn:hover {
  background: linear-gradient(90deg,#52e6fa 0%, #6d48ff 100%);
}
.auth-bottom {
  text-align: center;
  color: #7260a3;
  font-size: 1.04rem;
  margin-top: 11px;
}
.auth-bottom a {
  color: #684ffa;
  text-decoration: underline;
  font-weight: 600;
}
@media (max-width: 950px) {
  .auth-split-bg {
    flex-direction: column;
  }
  .auth-left, .auth-right {
    flex: none;
    width: 100%;
    min-height: 220px;
    padding: 28px 0;
  }
  .auth-form-wrapper {
    margin-top: 15px;
  }
  .auth-logo {
    left: 15px;
    top: 15px;
  }
}
@media (max-width: 600px) {
  .auth-form-wrapper {
    padding: 16px 6vw 17px 6vw;
    max-width: 99vw;
  }
  .auth-hero-graphic {
    margin-top: 35px;
    width: 80vw;
  }
  .auth-left-title {
    font-size: 1.25rem;
  }
}
