  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0e27;
    color: #ffffff;
    min-height: 100vh;
  }

  /* Contenedor ahora centra una sola columna */
  .login-container {
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4e 50%, #0a0e27 100%);
  }

  /* Left Side - Branding */
  .login-branding {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    display: none; /* Hiding Branding for now */
  }

  .login-branding::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: pulse 15s ease-in-out infinite;
  }

  @keyframes pulse {
    0%,
    100% {
      transform: scale(1);
      opacity: 0.5;
    }
    50% {
      transform: scale(1.1);
      opacity: 0.8;
    }
  }

  .branding-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 400px;
  }

  .branding-content .logo {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  }

  .branding-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  }

  .branding-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.6;
  }

  .features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
  }

  .feature:hover {
    transform: translateX(10px);
  }

  .feature-icon {
    font-size: 1.5rem;
  }

  /* Formulario con card estilizada */
  .login-form-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 450px;
  }

  .login-form-wrapper {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  }

  /* Logo agregado al header del form */
  .form-header {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  .form-header .logo {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
  }

  .form-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
  }

  .form-header p {
    color: rgba(255, 255, 255, 0.6);
  }

  .login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
  }

  .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }

  .input-icon {
    position: absolute;
    left: 1rem;
    font-size: 1.1rem;
    opacity: 0.6;
  }

  .input-wrapper input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
  }

  .input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.4);
  }

  .input-wrapper input:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.2);
  }

  .toggle-password {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    opacity: 0.6;
    transition: opacity 0.3s;
  }

  .toggle-password:hover {
    opacity: 1;
  }

  .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
  }

  .checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
  }

  .checkbox-wrapper input {
    accent-color: #667eea;
    width: 18px;
    height: 18px;
    cursor: pointer;
  }

  .forgot-password {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s;
  }

  .forgot-password:hover {
    color: #764ba2;
    text-decoration: underline;
  }

  .btn-login {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
  }

  .btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
  }

  .btn-login:active {
    transform: translateY(0);
  }

  .divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
  }

  .divider::before,
  .divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
  }

  .social-login {
    display: flex;
    gap: 1rem;
  }

  .btn-social {
    flex: 1;
    padding: 0.85rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
  }

  .btn-social:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }

  .btn-google span {
    font-weight: bold;
    color: #4285f4;
  }

  .btn-discord span {
    color: #5865f2;
  }

  .form-footer {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .form-footer p {
    color: rgba(255, 255, 255, 0.6);
  }

  .form-footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
  }

  .form-footer a:hover {
    color: #764ba2;
    text-decoration: underline;
  }

  .back-home {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5) !important;
    font-weight: 400 !important;
  }

  .back-home:hover {
    color: rgba(255, 255, 255, 0.8) !important;
  }

  /* Responsive */
  @media (max-width: 968px) {
    .login-container {
      flex-direction: column;
    }

    .login-branding {
      padding: 2rem;
      min-height: auto;
    }

    .branding-content h1 {
      font-size: 2rem;
    }

    .features {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
    }

    .feature {
      flex: 0 1 auto;
      padding: 0.75rem 1rem;
    }

    .login-form-container {
      padding: 2rem;
    }
  }

  @media (max-width: 480px) {
    .login-container {
      padding: 1rem;
    }

    .login-form-wrapper {
      padding: 2rem 1.5rem;
      border-radius: 16px;
    }

    .form-header .logo {
      font-size: 1.75rem;
    }

    .form-header h2 {
      font-size: 1.5rem;
    }

    .form-options {
      flex-direction: column;
      gap: 0.75rem;
      align-items: flex-start;
    }

    .social-login {
      flex-direction: column;
    }
  }
