Log In

 


  <a data-encoded-tag-name="meta" data-encoded-tag-value="" data-encoded-attr-charset="VVRGLTg="></a>
  <a data-encoded-tag-name="meta" data-encoded-tag-value="" data-encoded-attr-name="dmlld3BvcnQ=" data-encoded-attr-content="d2lkdGglM0RkZXZpY2Utd2lkdGglMkMlMjBpbml0aWFsLXNjYWxlJTNEMS4w"></a>
  <title>Login &amp; Create Account</title>
  <style>
    body {
      font-family: Arial, sans-serif;
      background-color: #f4f0eb;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }
    .container {
      display: flex;
      gap: 50px;
      max-width: 900px;
      width: 100%;
    }
    .form-container {
      flex: 1;
      background-color: #fff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    .form-container h2 {
      text-align: center;
      margin-bottom: 20px;
      font-size: 24px;
    }
    form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    label {
      font-size: 14px;
      font-weight: bold;
    }
    input, select, button {
      padding: 10px;
      font-size: 14px;
      border: 1px solid #ddd;
      border-radius: 5px;
    }
    button {
      background-color: black;
      color: white;
      border: none;
      cursor: pointer;
    }
    button:hover {
      background-color: #444;
    }
    .checkbox-container {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .small-text {
      font-size: 12px;
      color: #555;
    }
    .forgot-password {
      text-align: right;
      font-size: 12px;
      margin-top: -10px;
    }
    .forgot-password a {
      text-decoration: none;
      color: black;
    }
    .forgot-password a:hover {
      text-decoration: underline;
    }
  </style>


  <div class="container">
    <!-- Login Form -->
    <div class="form-container">
      <h2>LOG IN</h2>
      <form>
        <label for="email">Email</label>
        <input required="" name="email" id="email" type="email">
        
        <label for="password">Password</label>
        <input required="" name="password" id="password" type="password">
        
        <button type="submit">LOGIN</button>
        <div class="forgot-password">
          <a href="#">Forgot your password?</a>
        </div>
      </form>
    </div>

    <!-- Create Account Form -->
    <div class="form-container">
      <h2>CREATE ACCOUNT</h2>
      <form>
        <label for="first-name">First name</label>
        <input required="" name="first-name" id="first-name" type="text">
        
        <label for="last-name">Last name</label>
        <input required="" name="last-name" id="last-name" type="text">
        
        <label for="email-create">Email</label>
        <input required="" name="email-create" id="email-create" type="email">
        
        <label for="password-create">Password</label>
        <input required="" name="password-create" id="password-create" type="password">
        
        <div class="checkbox-container">
          <input name="consent" id="consent" type="checkbox">
          <label class="small-text" for="consent">
            Yes, I consent to receive emails from Pepper. I can unsubscribe at any time by clicking the link at the bottom of our emails. Privacy Policy and Terms of Use.
          </label>
        </div>
        
        <button type="submit">CREATE ACCOUNT</button>
      </form>
    </div>
  </div>