<!DOCTYPE html>
<html>
  <head>
    <title>My Landing Page</title>
    <style>
      /* Add styles for a professional look */
      body {
        font-family: Arial, sans-serif;
        background-color: #f2f2f2;
        text-align: center;
      }
css
Copy code
  h1 {
    font-size: 28px;
    color: #333;
    margin: 20px 0;
  }

  form {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    width: 400px;
    margin: 20px auto;
  }

  label {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
    display: block;
  }

  select {
    width: 100%;
    padding: 10px;
    font-size: 22px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
  }

  input[type="submit"] {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 22px;
    margin-top: 20px;
  }

  /* Style the popup window */
  .popup-container {
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    visibility: hidden;
  }

  .popup-container.show {
    visibility: visible;
  }

  .popup {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    width: 400px;
    text-align: center;
  }

  .popup h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .popup p {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .popup .close-btn {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    margin-top: 20px;
  }
</style>
  </head>
  <body>
    <h1>Welcome to Victoria Workshops.com!</h1>
    <p>Please log in for your free pdf's!</p>
    <form action="#">
      <input type="email" placeholder="Enter your email">
      <input type