  body {
      margin: 0;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      background: linear-gradient(135deg, #7ae9e3, #a6ce5b);
  }

  .container {
      background: rgba(255, 255, 255, 0.95);
      padding: 30px 40px;
      border-radius: 20px;
      box-shadow: 0 15px 30px rgba(104, 102, 102, 0.2);
      text-align: center;
      width: 350px;
  }

  h1 {
      margin-bottom: 25px;
      color: #333;
      font-size: 32px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  input[type="password"] {
      width: 90%;
      padding: 12px;
      margin-bottom: 15px;
      border-radius: 8px;
      border: 1px solid #ccc;
      font-size: 16px;
  }

  input[type="password"]:focus {
      border-color: #ff7a18;
      outline: none;
      box-shadow: 0 0 5px rgba(255, 122, 24, 0.5);
  }

  button {
      padding: 12px 25px;
      font-size: 16px;
      border: none;
      border-radius: 25px;
      background: linear-gradient(135deg, #ff7a18, #e6670f);
      color: white;
      cursor: pointer;
      transition: 0.3s;
  }

  button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(230, 103, 15, 0.5);
  }

  #output {
      margin-top: 20px;
      font-size: 20px;
      font-weight: bold;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }