body {
    font-family: "Courier New", Courier, monospace;;
    background-color: #0d0d0d;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;

  }
  .container {
    font-family: "Courier New", Courier, monospace;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 90%;
    max-width: 400px;
    text-align: center;
    color:#0df005;
    font-size: 13px;
  }
  .container h1 {
    margin-bottom: 20px;
  }
  .container label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
    font-size: 24px;
  }
  .container input {
    font-family: "Courier New", Courier, monospace;
    font-weight: bolder;
    width: 100%;
    padding: 8px;
    font-size: 16px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #000000;
    color: #0df005;
  }
  .container button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #2d2d2d;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    color:#0df005
  }
  .container button:hover {
    background-color: #0b7a66;
  }