:root {
  --login-bg: rgba(12, 12, 12, 0.8);
  --login-card-bg: rgba(30, 30, 30, 0.9);
  --login-border: rgba(171, 80, 187, 0.3);
  --login-highlight: rgba(171, 80, 187, 0.1);
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: 20px;
}

.login-card {
  background: var(--login-card-bg);
  border-radius: 15px;
  padding: 40px;
  width: 100%;
  max-width: 600px;
  text-align: center;
  border: 1px solid var(--login-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.6s ease-out;
}

.login-card:hover {
  border-color: var(--colorSecundario);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 20px var(--login-highlight);
}

.login-header {
  margin-bottom: 30px;
}

.login-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: white;
}

.login-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.benefits-section {
  text-align: left;
  margin-bottom: 30px;
}

.benefits-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
  color: var(--colorSecundario);
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(171, 80, 187, 0.1);
  transform: translateX(5px);
}

.benefit-icon {
  font-size: 1.5rem;
  color: var(--colorSecundario);
  margin-right: 15px;
  min-width: 30px;
  text-align: center;
}

.benefit-content h3 {
  margin: 0 0 5px 0;
  font-size: 1.2rem;
  color: white;
}

.benefit-content p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.login-button-container {
  text-align: center;
  margin-top: 30px;
}

.login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, var(--colorSecundario), #8a3a9a);
  color: white;
  animation: pulse 2s infinite;
}

.login-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(171, 80, 187, 0.5);
  animation: none;
}

.login-button:active {
  transform: translateY(0);
}

.login-button::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: 0.5s;
}

.login-button:hover::before {
  left: 100%;
}

.login-footer {
  margin-top: 25px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.login-footer a {
  color: var(--colorSecundario);
  text-decoration: none;
  transition: color 0.3s ease;
}

.login-footer a:hover {
  color: #8a3a9a;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .login-card {
    padding: 30px 20px;
  }
  
  .login-title {
    font-size: 2rem;
  }
  
  .login-subtitle {
    font-size: 1rem;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
  }
  
  .benefit-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
}