/*@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');*/

body {
    font-family: 'pixel', sans-serif;
    background-color: #f0f0f0;
  }
  
  .login-box {
    width: 300px;
    height: 200px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin: 50px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .login-box h2 {
    text-align: center;
    margin-top: 0;
  }
  
  form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  input[type="text"], input[type="password"] {
    width: 100%;
    height: 40px;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
  }
  
  button[type="button"] {
    width: 50%;
    height: 30px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    /*margin: 5px;*/
  }
  
  button[type="button"]:hover {
    background-color: #3e8e41;
  }
  
  .notification {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    display: none;
  }
   .notification button[type="button"]{
    width: 100%;
    height: 30px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 15px;
    cursor: pointer;
     margin: 5px 0px;
  }
  .notification p {
    margin-bottom: 20px;
  }
  footer {
    bottom: 0;
    left: 0;
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 5%;
    margin: 10px;
    text-align: center;
    font-size: 1.2em;
    padding: 10px;
    font-family: courier;
}