.cta-section {
    background: #000;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .cta-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    color: #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.03);
  }
  
  .cta-card h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fff;
  }
  
  .cta-card p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 30px;
  }
  
  .cta-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .input-wrapper {
    position: relative;
    width: 100%;
  }
  
  .email-icon {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #aaa;
  }
  
  .cta-form input {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border-radius: 6px;
    border: 1px solid #555;
    background-color: transparent;
    color: white;
    font-size: 1rem;
  }
  
  .cta-form input::placeholder {
    color: #888;
  }
  
  .cta-form button {
    padding: 12px;
    border-radius: 6px;
    background: #fff;
    color: #000;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .cta-form button:hover {
    background: #ddd;
  }
  
  .cta-divider {
    margin: 20px 0;
    color: #666;
    font-size: 0.85rem;
  }
  
  .cta-login {
    color: #fff;
    text-decoration: none;
    border: 1px solid #666;
    padding: 10px 20px;
    border-radius: 6px;
    display: inline-block;
    transition: all 0.3s ease;
  }
  
  .cta-login:hover {
    background: #111;
  }
  