* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
  
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
  }
  
  .container {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 16px;
    background-color: #ffffff;
    min-height: 100vh;
  }
  
  .logo-container {
    text-align: center;
    margin-bottom: 24px;
  }
  
  .logo {
    width: 60px;
    height: 60px;
  }
  
  .main-heading {
    font-size: 2.5rem;
    font-weight: 400;
    color: #2d2d2d;
    margin-bottom: 16px;
    line-height: 1.2;
  }
  
  .description {
    font-size: 1.125rem;
    color: #2d2d2d;
    margin-bottom: 24px;
    line-height: 1.5;
  }
  
  .loan-form {
    margin-bottom: 40px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 8px;
  }
  
  .form-input {
    width: 100%;
    padding: 16px 20px;
    font-size: 1.125rem;
    border: 2px solid #d0d0d0;
    border-radius: 8px;
    background-color: #ffffff;
    color: #333;
    transition: border-color 0.3s ease;
  }
  
  .form-input::placeholder {
    color: #b0b0b0;
  }
  
  .form-input:focus {
    outline: none;
    border-color: #ff9933;
  }
  
  .email-group {
    position: relative;
  }
  
  .email-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
  }
  
  .email-autocomplete.show {
    display: block;
  }
  
  .email-autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
  }
  
  .email-autocomplete-item:last-child {
    border-bottom: none;
  }
  
  .email-autocomplete-item:hover,
  .email-autocomplete-item.selected {
    background-color: #fff5e6;
    color: #ff9933;
  }
  
  .email-autocomplete-item .email-prefix {
    color: #666;
  }
  
  .email-autocomplete-item .email-domain {
    color: #ff9933;
    font-weight: 600;
  }
  
  .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 60px;
    padding: 12px 0;
  }
  
  .checkbox {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border: 2px solid #00c896;
    border-radius: 4px;
    cursor: pointer;
    accent-color: #00c896;
    margin-top: 2px;
  }
  
  .checkbox-label {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    cursor: pointer;
  }
  
  .link {
    color: #ff6633;
    text-decoration: none;
    font-weight: 500;
  }
  
  .link:hover {
    text-decoration: underline;
  }
  
  .submit-btn {
    width: 100%;
    height: 40px;
    padding: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: rgb(255, 171, 51);
    border: none;
    border-bottom: 2px solid rgb(225, 140, 22);
    border-radius: 8px;
    cursor: pointer;
    margin-top: 0;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
  }
  
  .submit-btn:hover:not(:disabled) {
    background: rgb(255, 185, 70);
  }
  
  .submit-btn:active:not(:disabled) {
    background: rgb(255, 160, 40);
  }
  
  .submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  
  .footer {
    border-top: 1px solid #e0e0e0;
    padding-top: 24px;
    margin-top: 32px;
  }
  
  .footer-logo {
    width: 120px;
    height: auto;
    margin-bottom: 16px;
    opacity: 0.7;
  }
  
  .footer-text {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.5;
    text-align: justify;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .container {
      padding: 16px 12px;
    }
    
    .logo-container {
      margin-bottom: 16px;
    }
    
    .logo {
      width: 50px;
      height: 50px;
    }
    
    .main-heading {
      font-size: 1.75rem;
      margin-bottom: 12px;
    }
  
    .description {
      font-size: 0.95rem;
      margin-bottom: 20px;
    }
  
    .form-group {
      margin-bottom: 16px;
    }
    
    .form-group label {
      font-size: 0.9rem;
      margin-bottom: 6px;
    }
  
    .form-input {
      font-size: 0.95rem;
      padding: 12px 14px;
    }
    
    .checkbox-group {
      margin-bottom: 16px;
      padding: 8px 0;
      gap: 10px;
    }
    
    .checkbox {
      width: 20px;
      height: 20px;
      min-width: 20px;
    }
    
    .checkbox-label {
      font-size: 0.85rem;
    }
  
    .submit-btn {
      font-size: 1rem;
      padding: 14px;
    }
    
    .footer {
      padding-top: 20px;
      margin-top: 24px;
    }
    
    .footer-logo {
      width: 100px;
      margin-bottom: 12px;
    }
    
    .footer-text {
      font-size: 0.7rem;
      line-height: 1.4;
    }
  }
  