      body {
        font-family: Arial, sans-serif;
        background-color: #f2f2f2;
      }
      
      h1 {
        text-align: center;
        color: #333;
      }
      
      form {
        max-width: 400px;
        margin: 0 auto;
        padding: 20px;
        background-color: #fff;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.3);
      }
      
      label {
        display: block;
        margin-bottom: 10px;
        color: #333;
      }
      
      input[type="text"],
      input[type="password"] {
        display: block;
        width: 100%;
        padding: 10px;
        font-size: 16px;
        border-radius: 5px;
        border: 1px solid #ccc;
        box-sizing: border-box;
        margin-bottom: 20px;
      }
      
      input[type="button"] {
        background-color: #4CAF50;
        color: #fff;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        cursor: pointer;
        margin: 0 auto;
        display: block;
      }
      
      input[type="button"]:hover {
        background-color: #3e8e41;
      }
      
      #message {
        text-align: center;
        color: red;
      }
      #timer {
        font-size: 18px;
        color: red;
        text-align: center;
      }
      #byebye {
        font-size: 48px;
        font-weight: bold;
        color: red;
        margin-top: 50px;
        animation: pulse 2s infinite;
      }
      
      @keyframes pulse {
        0% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.1);
        }
        100% {
          transform: scale(1);
        }
      }
      p.made-by:before {
        content: "Made with";
      }   

      p.made-by a {
        color: blue;
        text-decoration: none;
      }

       p.made-by a:hover {
        text-decoration: underline;
      }
      /* Style for the footer */
      .footer {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        background-color: #f5f5f5;
        text-align: center;
        padding: 10px;
      }
      
      /* Style for the message inside the footer */
      .footer p {
        margin: 0;
        font-size: 14px;
        color: #555;
      }
      
      
