* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', system-ui, sans-serif;
      background-color: #f3f4f6;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem 1rem; /* Un poco más de aire arriba y abajo */
    }

    /* Card Container - Corregido para no cortar el contenido */
    .card {
      width: 100%;
      max-width: 75rem;
      background-color: #1a3d34;
      border-radius: 1.5rem;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
      overflow: hidden;
      display: flex;
      min-height: 650px; /* Altura mínima base */
      height: auto;      /* Permite que crezca según el contenido */
    }

    /* Left Side */
    .left-side {
      display: none;
      width: 50%;
      position: relative;
      overflow: hidden;
    }

    @media (min-width: 1024px) {
      .left-side {
        display: flex;
      }
    }

    .organic-shape {
      position: absolute;
      inset: 0;
      z-index: 1;
    }

    .organic-shape svg {
      width: 100%;
      height: 100%;
    }

    .left-content {
      position: relative;
      z-index: 10;
      display: flex;
      flex-direction: column;
      width: 100%;
      height: 100%;
      padding: 2.5rem;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .logo svg {
      width: 2.5rem;
      height: 2.5rem;
    }

    .logo-text {
      font-size: 1.5rem;
      font-weight: 700;
      letter-spacing: -0.025em;
      color: #1a3d34;
    }

    .illustration-container {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem 0;
    }

    .illustration-container svg {
      width: 100%;
      max-width: 320px;
      height: auto;
    }

    .tagline {
      color: rgba(26, 61, 52, 0.4);
      font-size: 0.875rem;
      font-weight: 500;
    }

    /* Right Side */
    .right-side {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 3rem 1.5rem;
    }

    @media (min-width: 1024px) {
      .right-side {
        width: 50%;
        padding: 3rem;
      }
    }

    /* Mobile Logo */
    .mobile-logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 2rem;
    }

    @media (min-width: 1024px) {
      .mobile-logo {
        display: none;
      }
    }

    .mobile-logo svg {
      width: 2.5rem;
      height: 2.5rem;
    }

    .mobile-logo-text {
      font-size: 1.5rem;
      font-weight: 700;
      color: white;
    }

    /* Welcome Text */
    .welcome {
      width: 100%;
      max-width: 24rem;
      margin-bottom: 2rem;
      text-align: center;
    }

    @media (min-width: 1024px) {
      .welcome {
        text-align: left;
      }
    }

    .welcome h1 {
      font-size: 1.875rem;
      font-weight: 700;
      color: white;
      margin-bottom: 0.5rem;
    }

    .welcome p {
      color: rgba(255, 255, 255, 0.6);
    }

    /* Form */
    .auth-form {
      width: 100%;
      max-width: 24rem;
    }

    .form-fields {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 1.25rem;
    }

    .input-field {
      width: 100%;
      padding: 0.875rem 1.5rem;
      background-color: #0f2620;
      border: 1px solid #2a5a4d;
      border-radius: 9999px;
      color: white;
      font-size: 1rem;
      font-family: inherit;
      transition: all 0.2s;
    }

    .input-field::placeholder {
      color: #9ca3af;
    }

    .input-field:focus {
      outline: none;
      border-color: #66a5ad;
      box-shadow: 0 0 0 1px #66a5ad;
    }

    .forgot-password {
      text-align: right;
      margin-bottom: 1.5rem;
    }

    .forgot-password a {
      color: #66a5ad;
      font-size: 0.875rem;
      text-decoration: none;
    }

    .btn-primary {
      width: 100%;
      padding: 1rem;
      background-color: #66a5ad;
      color: white;
      font-weight: 600;
      font-size: 1rem;
      border: none;
      border-radius: 0.75rem;
      cursor: pointer;
      transition: all 0.2s;
    }

    .btn-primary:hover {
      background-color: #5a959c;
      transform: translateY(-1px);
    }

    /* Divider */
    .divider {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 1.5rem 0;
    }

    .divider-line {
      position: absolute;
      width: 100%;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .divider span {
      position: relative;
      background-color: #1a3d34;
      padding: 0 1rem;
      color: rgba(255, 255, 255, 0.4);
      font-size: 0.875rem;
    }

    /* Google Button */
    .btn-google {
      width: 100%;
      padding: 0.875rem;
      background-color: white;
      color: #1f2937;
      font-weight: 500;
      border: none;
      border-radius: 0.75rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      transition: all 0.2s;
    }

    .btn-google:hover {
      background-color: #f3f4f6;
    }

    .btn-google svg {
      width: 1.25rem;
      height: 1.25rem;
    }

    /* Links */
    .register-link {
      text-align: center;
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.875rem;
      margin-top: 1.5rem;
    }

    .register-link a {
      color: #66a5ad;
      font-weight: 600;
      text-decoration: none;
    }

    .terms-link {
      text-align: center;
      margin-top: 1.5rem;
    }

    .terms-link a {
      color: rgba(255, 255, 255, 0.4);
      font-size: 0.75rem;
      text-decoration: none;
    }

    /* Hidden */
    .hidden {
      display: none !important;
    }