.auth-wrapper {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0 50px;
  position: relative;
}

.auth-card {
  width: 100%;
  max-width: 520px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 18px 48px rgba(255, 111, 169, 0.18);
  padding: 24px 22px;
}

.auth-title {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 6px;
  text-align: center;
}

.auth-sub {
  color: var(--mypro-muted);
  text-align: center;
  font-size: 13px;
  margin-bottom: 16px;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.auth-field label {
  font-weight: 800;
}

.input-icon {
  position: relative;
}

.input-icon i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--mypro-muted);
}

.input-icon .form-control {
  padding-left: 36px;
}

.form-control {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
  height: 46px;
  font-weight: 700;
}

.captcha-row,
.code-row {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 8px;
  align-items: center;
}

.auth-btn {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(120deg, var(--mypro-primary), var(--mypro-primary-deep));
  box-shadow: 0 12px 26px rgba(255, 111, 169, 0.22);
}

.send-code-btn {
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255, 111, 169, 0.35);
  background: rgba(255, 255, 255, 0.9);
  color: var(--mypro-primary);
  font-weight: 800;
}

.auth-links {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.auth-links a {
  color: var(--mypro-primary);
  text-decoration: none;
  font-weight: 700;
}

.image-code {
  width: 100%;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  object-fit: cover;
  cursor: pointer;
}

.auth-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 0;
}

@media (max-width: 600px) {
  .auth-card {
    margin: 0 12px;
  }

  .auth-links {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }

  .auth-top {
    flex-direction: column;
    gap: 6px;
  }
}
