* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body, html {
      height: 100%;
      }

    .container {
      display: flex;
      height: 100vh;
      width: 100%;
    }

    .left-side {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 30px;
    }

    .left-side h1 {
      font-size: 4em;
      text-align: center;
      line-height: 1.2;
      color: #333;
    }

    .right-side {
      flex: 1;
      background-color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .login {
      width: 100%;
      max-width: 400px;
      padding: 40px;
      border: 1px solid #ccc;
      border-radius: 20px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .login h2 {
      text-align: center;
      font-size: 28px;
      margin-bottom: 20px;
      color: #222;
    }

    form label {
      font-weight: bold;
      color: #333;
    }

    form input[type="text"],
    form input[type="password"] {
      width: 100%;
      padding: 10px;
      margin-top: 5px;
      margin-bottom: 15px;
      border: 2px solid #ccc;
      border-radius: 10px;
    }

    .extra-options {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }

    .reset-password a {
      text-decoration: none;
      color: #007bff;
    }

    form button {
      width: 100%;
      padding: 12px;
      background-color: #413c3c;
      color: #fff;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      font-size: 18px;
    }

    form p {
      text-align: center;
      margin-top: 15px;
    }

    form p a {
      color: #007bff;
      text-decoration: none;
    }
    .main-footer {
    background: #2a2a2a;
    color: white;
    padding: 4rem 2rem 2rem;
    border-radius: 15px;
    margin: 2rem;
    position: relative;
    overflow: hidden;
  }

  .main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="20" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="30" r="1.5" fill="%23ffffff" opacity="0.08"/><circle cx="20" cy="80" r="3" fill="%23ffffff" opacity="0.06"/><polygon points="80,10 85,15 80,20" fill="%23ffffff" opacity="0.1"/><path d="M5,70 Q15,60 25,70" stroke="%23ffffff" stroke-width="0.5" opacity="0.1" fill="none"/></svg>');
    pointer-events: none;
  }

  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
  }

  /* Left Section - Branding */
  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-logo {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
  }

  .logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
  }

  .logo-accent {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff6b9d;
  }

  .footer-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
  }

  .footer-copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    margin-top: auto;
  }

  /* Middle Section - Newsletter */
  .footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-newsletter h3 {
    font-size: 1rem;
    font-weight: bold;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .footer-newsletter h4 {
    font-size: 0.9rem;
    font-weight: bold;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }

  .newsletter-input {
    flex: 1;
    padding: 0.75rem;
    background: #3a3a3a;
    border: 1px solid #555;
    border-radius: 5px;
    color: white;
    font-size: 0.9rem;
  }

  .newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    font-size: 0.8rem;
  }

  .newsletter-input:focus {
    outline: none;
    border-color: #ff6b9d;
  }

  .newsletter-btn {
    padding: 0.75rem 1.5rem;
    background: #ff6b9d;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
  }

  .newsletter-btn:hover {
    background: #e55a8a;
    transform: translateY(-2px);
  }

  /* Right Section - Social & Contact */
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .social-section h3,
  .contact-section h3 {
    font-size: 1rem;
    font-weight: bold;
    color: white;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .social-icons {
    display: flex;
    gap: 1rem;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    background: #3a3a3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
  }

  .social-icon:hover {
    background: #ff6b9d;
    transform: translateY(-2px);
  }

  .contact-info {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
  }

  /* Bottom Legal Links */
  .footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 3rem;
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
  }

  .legal-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
  }

  .legal-link:hover {
    color: white;
  }
