* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

.auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
  background: radial-gradient(900px 600px at 50% -10%, rgba(0, 160, 255, 0.18), transparent 60%), #070b10;
  color: #eaf2ff;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.auth-header {
  text-align: center;
  margin-bottom: 22px;
}

.auth-logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(0, 160, 255, 0.12);
  padding: 1px;
  border: 1px solid rgba(120, 200, 255, 0.25);
  display: inline-block;
}

.auth-title {
  margin: 18px 0 6px;
  font-size: 34px;
  letter-spacing: 0.2px;
}

.auth-subtitle {
  margin: 0;
  opacity: 0.75;
  font-size: 15px;
}

.auth-card {
  width: 100%;
  max-width: 520px;
  background: rgba(17, 24, 32, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 32px 22px;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 6px;
  margin-bottom: 18px;
}

.auth-tab {
  text-decoration: none;
  text-align: center;
  padding: 12px 14px;
  border-radius: 10px;
  color: rgba(234, 242, 255, 0.85);
  font-size: 17px;
  font-weight: 600;
  transition: 0.2s ease;
}
.auth-tab:hover {
  background: rgba(255, 255, 255, 0.06);
}
.auth-tab.active {
  background: #00a3ff;
  color: #06101a;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.auth-label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.auth-label-text {
  font-size: 15px;
  opacity: 0.9;
}

.auth-input {
  height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: #eaf2ff;
  outline: none;
}
.auth-input::-moz-placeholder {
  color: rgba(234, 242, 255, 0.45);
}
.auth-input::placeholder {
  color: rgba(234, 242, 255, 0.45);
}
.auth-input:focus {
  border-color: rgba(0, 163, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(0, 163, 255, 0.15);
}

.auth-submit {
  margin-top: 6px;
  height: 46px;
  border: none;
  border-radius: 12px;
  background: #00a3ff;
  color: #06101a;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  transition: 0.2s ease;
}
.auth-submit:hover {
  filter: brightness(1.05);
}

.auth-divider {
  margin: 8px 0 2px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  color: rgba(234, 242, 255, 0.55);
  font-size: 13px;
}
.auth-divider::before, .auth-divider::after {
  content: "";
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.auth-divider span {
  padding: 4px 0;
}

.auth-google {
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(234, 242, 255, 0.92);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.2s ease;
}
.auth-google:hover {
  background: rgba(255, 255, 255, 0.09);
}

.google-icon {
  width: 18px;
  height: 18px;
}/*# sourceMappingURL=auth.css.map */