/* Main content container */
.main-container {
  max-width: 400px;
}

/* Logo Section */
.harmony-logo {
  margin-bottom: 0; /* Override global.css margin-bottom: 2rem */
}

.logo-icon {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.harmony-brand {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
  background: linear-gradient(45deg, #ff6b9d, #4834d4, #686de0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

/* Login Form Container */
.login-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 1.5rem;
}

/* Form Group */
.form-group {
  margin-bottom: 1.5rem;
}

/* Input Styling */
.form-input {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  backdrop-filter: blur(5px);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.form-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

/* Forgot Password Link */
.forgot-password {
  text-align: right;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.forgot-password a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.forgot-password a:hover {
  color: white;
}

/* Button Styling */
.btn {
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 12px;
  padding: 1rem;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn:active {
  transform: translateY(0);
}

.btn.primary {
  background: linear-gradient(135deg, #ff6b9d, #4834d4);
  border: none;
}

.btn.primary:hover {
  background: linear-gradient(135deg, #ff7aa6, #5a45e0);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

/* Animations */
@keyframes titleGlow {
  0% {
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
  }
  100% {
    text-shadow: 3px 3px 15px rgba(255, 107, 157, 0.4),
      -3px -3px 15px rgba(72, 52, 212, 0.3);
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .harmony-brand {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .login-container {
    padding: 2rem;
    margin: 1rem;
  }

  .logo-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}