body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
  }
  
  .container {
    text-align: center;
    background-color: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
    transform: rotateX(15deg);
  }
  
  h1 {
    font-size: 48px;
    color: #333;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  input[type="email"], button {
    margin-top: 20px;
    padding: 15px;
    font-size: 20px;
    border: none;
    border-radius: 10px;
  }
  
  input[type="email"] {
    width: 100%;
    max-width: 400px;
  }
  
  button {
    cursor: pointer;
    background-color: #4CAF50;
    color: white;
    border-radius: 10px;
    padding: 15px 30px;
    transition: background-color 0.3s;
  }
  
  button:hover {
    background-color: #45a049;
    transform: translateY(-2px);
  }
  
  #countdown {
    font-size: 36px;
    margin-top: 40px;
    color: #777;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  }
  