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

  body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      background: linear-gradient(135deg, #F9F0EA 0%, #FFF8F0 50%, #F5E6DB 100%);
      min-height: 100vh;
  }

  /* Navbar */
  .navbar {
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(229, 231, 235, 0.5);
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
      position: sticky;
      top: 0;
      z-index: 50;
  }

  .navbar-container {
      max-width: 80rem;
      margin: 0 auto;
      padding: 15px 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
  }

  .logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      cursor: pointer;
  }

  .logo-icon {
      width: 40px;
      height: 40px;
      background: #348054;
      border-radius: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
      transition: all 0.3s;
  }

  .logo:hover .logo-icon {
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
      transform: scale(1.05);
  }

  .logo-text {
      font-size: 1.5rem;
      font-weight: 700;
      color: #000;
  }

  .nav-btn {
      padding: 0.5rem 1rem;
      background: transparent;
      border: none;
      color: #374151;
      cursor: pointer;
      font-size: 0.875rem;
      transition: color 0.2s;
  }

  .nav-btn:hover {
      color: #348054;
  }

  /* Main Container */
  .main-container {
      width: 100%;
      max-width: 72rem;
      margin: 70px auto;
      padding: 3rem 1.5rem;
      min-height: calc(100vh - 5rem);
      display: flex;
      align-items: center;
  }

  .grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: center;
      width: 100%;
  }

  @media (min-width: 1024px) {
      .grid {
          grid-template-columns: 1fr 1fr;
      }
  }

  /* Form Card */
  .form-card {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(8px);
      border-radius: 1.5rem;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
      padding: 2rem;
  }

  .form-header {
      margin-bottom: 1.5rem;
  }

  .form-header h1 {
      font-size: 1.875rem;
      font-weight: 700;
      color: #000;
      margin-bottom: 0.5rem;
  }

  .form-header p {
      color: #6b7280;
      font-size: 0.875rem;
  }

  .form-group {
      margin-bottom: 1.25rem;
  }

  .form-group label {
      display: block;
      font-size: 0.875rem;
      font-weight: 600;
      color: #000;
      margin-bottom: 0.5rem;
  }

  .form-group input {
      width: 100%;
      height: 3rem;
      padding: 0 1rem;
      border: 1px solid #d1d5db;
      border-radius: 0.5rem;
      font-size: 1rem;
      transition: all 0.2s;
  }

  .form-group input:focus {
      outline: none;
      border-color: #348054;
      box-shadow: 0 0 0 3px rgba(52, 128, 84, 0.1);
  }

  .forgot-password {
      display: flex;
      justify-content: flex-end;
      margin-bottom: 1.25rem;
  }

  .forgot-password button {
      background: none;
      border: none;
      color: #348054;
      font-size: 0.875rem;
      font-weight: 500;
      cursor: pointer;
      transition: color 0.2s;
  }

  .forgot-password button:hover {
      color: #2a6844;
  }

  .submit-btn {
      width: 100%;
      height: 3rem;
      background: #348054;
      color: white;
      border: none;
      border-radius: 0.5rem;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
      transition: all 0.2s;
  }

  .submit-btn:hover {
      background: #2a6844;
      transform: translateY(-1px);
      box-shadow: 0 15px 20px -5px rgba(0, 0, 0, 0.15);
  }

  .form-footer {
      margin-top: 1.5rem;
      text-align: center;
  }

  .form-footer p {
      font-size: 0.875rem;
      color: #6b7280;
  }

  .form-footer button {
      background: none;
      border: none;
      color: #348054;
      font-weight: 700;
      cursor: pointer;
      transition: color 0.2s;
  }

  .form-footer button:hover {
      color: #2a6844;
  }

  /* Info Panel */
  .info-panel {
      padding-left: 0;
  }

  @media (min-width: 1024px) {
      .info-panel {
          padding-left: 2rem;
      }
  }

  .info-card-wrapper {
      position: relative;
  }

  .glow-effect {
      position: absolute;
      inset: -1rem;
      background: linear-gradient(90deg, #348054, #2a6844);
      border-radius: 1.5rem;
      filter: blur(2rem);
      opacity: 0.2;
      animation: pulse 2s infinite;
  }

  @keyframes pulse {

      0%,
      100% {
          opacity: 0.2;
      }

      50% {
          opacity: 0.3;
      }
  }

  .info-card {
      position: relative;
      z-index: 10;
      background: linear-gradient(135deg, #3d8f5f 0%, #348054 50%, #2a6844 100%);
      border-radius: 1.5rem;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
      overflow: hidden;
  }

  .decorative-circles {
      position: absolute;
      inset: 0;
      opacity: 0.1;
  }

  .circle {
      position: absolute;
      border: 4px solid white;
      border-radius: 50%;
  }

  .circle-1 {
      top: 2.5rem;
      right: 2.5rem;
      width: 8rem;
      height: 8rem;
  }

  .circle-2 {
      top: 5rem;
      right: 5rem;
      width: 5rem;
      height: 5rem;
  }

  .circle-3 {
      bottom: 2.5rem;
      left: 2.5rem;
      width: 10rem;
      height: 10rem;
  }

  .circle-4 {
      bottom: 5rem;
      left: 5rem;
      width: 6rem;
      height: 6rem;
  }

  .info-content {
      padding: 2rem;
      position: relative;
      z-index: 10;
  }

  .info-header {
      margin-bottom: 1.5rem;
  }

  .icon-wrapper {
      display: inline-flex;
      margin-bottom: 1rem;
      position: relative;
  }

  .icon-glow {
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, 0.3);
      border-radius: 0.75rem;
      filter: blur(1rem);
  }

  .icon-box {
      position: relative;
      width: 3.5rem;
      height: 3.5rem;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(12px);
      border-radius: 0.75rem;
      border: 1px solid rgba(255, 255, 255, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }

  .info-header h2 {
      font-size: 1.5rem;
      font-weight: 900;
      color: white;
      margin-bottom: 0.5rem;
      letter-spacing: -0.025em;
  }

  .header-line {
      height: 0.25rem;
      width: 5rem;
      background: rgba(255, 255, 255, 0.4);
      border-radius: 9999px;
  }

  .info-description {
      color: rgba(255, 255, 255, 0.95);
      font-size: 1rem;
      margin-bottom: 1.5rem;
      line-height: 1.6;
  }

  .features-list {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
  }

  .feature-item {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      padding: 0.75rem;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 0.75rem;
      transition: all 0.2s;
  }

  .feature-item:hover {
      background: rgba(255, 255, 255, 0.15);
  }

  .feature-icon {
      width: 1.5rem;
      height: 1.5rem;
      border-radius: 0.5rem;
      background: rgba(255, 255, 255, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.2s;
  }

  .feature-item:hover .feature-icon {
      transform: scale(1.1);
  }

  .feature-text {
      color: white;
      font-size: 0.875rem;
      font-weight: 500;
      padding-top: 0.125rem;
  }

  .bottom-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.75rem;
  }

  .bottom-card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 0.75rem;
      padding: 0.75rem;
      transition: all 0.2s;
  }

  .bottom-card:hover {
      background: rgba(255, 255, 255, 0.15);
  }

  .bottom-card-icon {
      width: 3rem;
      height: 3rem;
      border-radius: 0.5rem;
      background: rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 0.5rem;
      transition: transform 0.2s;
  }

  .bottom-card:hover .bottom-card-icon {
      transform: scale(1.1);
  }

  .bottom-card-text {
      font-size: 0.75rem;
      color: white;
      font-weight: 700;
      text-align: center;
      line-height: 1.2;
  }

  .hidden {
      display: none;
  }


  .error {
      color: #e53935;
      font-size: 0.75rem;
      margin-top: 4px;
      display: block;
  }