.auth-bg {
  min-height: 100vh;
  background: #fdf6ee;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-card {
  display: flex;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(44,62,80,0.18);
  overflow: hidden;
  max-width: 820px;
  width: 100%;
  min-height: 480px;
  animation: fadeIn 0.7s;
}
.auth-illustration {
  background: #f5f7fa;
  flex: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
}
.auth-illustration img {
  max-width: 100%;
  height: 260px;
  object-fit: contain;
}
.auth-form-side {
  flex: 1;
  padding: 48px 36px 36px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.auth-title {
  font-size: 2rem;
  font-weight: 700;
  color: #432c7a;
  margin-bottom: 8px;
}
.auth-subtitle {
  color: #888;
  font-size: 1rem;
  margin-bottom: 24px;
}
.auth-form-group {
  margin-bottom: 18px;
}
.auth-form-group label {
  display: flex;
  align-items: center;
  background: #f5f7fa;
  border-radius: 8px;
  padding: 0 12px;
  border: 2px solid #e1e5e9;
  transition: border-color 0.3s;
}
.auth-form-group label:focus-within {
  border-color: #6a11cb;
  background: #eef3fa;
}
.auth-form-group i {
  font-size: 20px;
  color: #b0b8c1;
  margin-right: 8px;
}
.auth-form-group input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 1rem;
  padding: 14px 0;
  width: 100%;
  color: #222;
}
.auth-form-group input::placeholder {
  color: #b0b8c1;
  opacity: 1;
}
.auth-btn-main {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 10px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(44,62,80,0.08);
}
.auth-btn-main:hover {
  background: linear-gradient(90deg, #2575fc 0%, #6a11cb 100%);
  box-shadow: 0 4px 16px rgba(44,62,80,0.12);
}
.auth-error {
  background: #ffeaea;
  color: #c0392b;
  border-radius: 6px;
  padding: 10px 12px;
  margin-bottom: 16px;
  text-align: center;
  font-size: 0.98rem;
}
.auth-form-footer {
  text-align: center;
  margin-top: 8px;
}
.auth-link {
  color: #2575fc;
  font-size: 0.98rem;
  text-decoration: none;
  transition: color 0.2s;
  margin: 0 4px;
}
.auth-link:hover {
  color: #6a11cb;
}
.auth-divider {
  color: #bbb;
  margin: 0 6px;
}
@media (max-width: 900px) {
  .auth-card {
    flex-direction: column;
    min-height: unset;
    max-width: 98vw;
  }
  .auth-illustration {
    padding: 24px 12px;
    height: 180px;
  }
  .auth-form-side {
    padding: 32px 16px 24px 16px;
  }
} 

.login-gradient-btn {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-radius: 10px;
  background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  margin: 18px 0 0 0;
  box-shadow: 0 2px 12px rgba(106,17,203,0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  letter-spacing: 0.5px;
  text-align: center;
  outline: none;
  display: block;
}
.login-gradient-btn:hover, .login-gradient-btn:focus {
  background: linear-gradient(90deg, #2575fc 0%, #6a11cb 100%);
  box-shadow: 0 4px 20px rgba(37,117,252,0.13);
  transform: translateY(-2px) scale(1.02);
} 