:where([class^="ri-"])::before {
  content: "\f3c2";
  }

  

  body.hide-content { opacity: 0 !important; }
  body {
  padding-bottom: env(safe-area-inset-bottom);
  padding-top: env(safe-area-inset-top);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  background: linear-gradient(135deg, #4f46e5 0%, #7e22ce 50%, #3730a3 100%);
  min-height: 100vh;
  animation: gradientShift 15s ease infinite;
  background-size: 400% 400%;
  }
  @keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
  }
  .glassmorphism {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  }
  .input-field {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .input-field:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
  }
  .input-field:hover {
  background: rgba(255, 255, 255, 0.08);
  }
  .btn-primary {
  background: linear-gradient(45deg, #3a2a59, #cb47ff);
  background-size: 200% 200%;
  animation: gradientAnimation 3s ease infinite;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  }
  .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(58, 42, 89, 0.4);
  }
  .btn-primary:active {
  transform: translateY(0);
  }
  @keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
  }
  .ripple {
  position: relative;
  overflow: hidden;
  }
  .ripple::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  }
  .ripple:active::before {
  width: 300px;
  height: 300px;
  }
  .social-btn {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .social-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  }
  .social-btn:active {
  transform: translateY(0);
  }
  .toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  }
  .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  }
  .toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  transition: 0.3s;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  }
  .toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
  }
  .toggle-switch input:checked + .toggle-slider {
  background: linear-gradient(45deg, #3a2a59, #cb47ff);
  }
  .toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(20px);
  }
  .fade-in {
  animation: fadeIn 0.8s ease-out;
  }
  @keyframes fadeIn {
  from {
  opacity: 0;
  transform: translateY(20px);
  }
  to {
  opacity: 1;
  transform: translateY(0);
  }
  }
  .slide-up {
  animation: slideUp 0.6s ease-out;
  }
  @keyframes slideUp {
  from {
  opacity: 0;
  transform: translateY(30px);
  }
  to {
  opacity: 1;
  transform: translateY(0);
  }
  }
  .loading-spinner {
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top: 2px solid white;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
  }
  @keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
  }
  .password-toggle {
  cursor: pointer;
  transition: color 0.3s ease;
  }
  .password-toggle:hover {
  color: rgba(255, 255, 255, 0.8);
  }
  .separator {
  position: relative;
  text-align: center;
  margin: 2rem 0;
  }
  .separator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  }
  .separator span {
  background: rgba(255, 255, 255, 0.1);
  padding: 0 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  }
  .floating-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  }
  .particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  }
  @keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
  }
  .error-message {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  backdrop-filter: blur(10px);
  }