body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f4f4f4;
    margin: 0;
  }
  
  p {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
  }
  
  input {
    width: 80px;
    padding: 8px;
    font-size: 16px;
    border: 2px solid #3498db;
    border-radius: 5px;
    text-align: center;
    outline: none;
  }
  
  button {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #3498db;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  button:hover {
    background-color: #2980b9;
  }
  
  #randomPass {
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50;
    word-break: break-all;
    padding: 10px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    min-width: 200px;
    text-align: center;
  }
  