 
body {
background: #f9f9f9;
      font-family: Arial, sans-serif;
      display: flex;
      justify-content: center;
      padding: 60px 20px;
    }
    .container {
      background: white;
      padding: 40px 30px;
      max-width: 400px;
      width: 100%;
      border-radius: 8px;
      box-shadow: 0 0 12px rgba(0,0,0,0.1);
      text-align: center;
    }
    h2 {
      margin-bottom: 25px;
      font-weight: 600;
      font-size: 24px;
      color: #333;
    }
    label {
      display: block;
      text-align: left;
      font-weight: 600;
      margin-bottom: 6px;
      font-size: 14px;
      color: #555;
    }
    input[type="email"],
    input[type="password"] {
      width: 100%;
      padding: 12px;
      margin-bottom: 18px;
      border-radius: 5px;
      border: 1px solid #ccc;
      font-size: 16px;
      box-sizing: border-box;
    }
    .requirements {
      font-size: 12px;
      color: #666;
      margin-bottom: 20px;
      text-align: left;
      line-height: 1.4;
    }
    .requirements div::before {
      content: "• ";
      color: #999;
    }
    button {
      background: #007bff;
      border: none;
      color: white;
      font-size: 16px;
      padding: 14px 0;
      border-radius: 30px;
      cursor: pointer;
      width: 100%;
      font-weight: 600;
      transition: background-color 0.25s ease;
      user-select: none;
    }
    button:hover {
      background: #0056b3;
    }
    .terms {
      font-size: 12px;
      color: #777;
      margin-top: 15px;
    }
    .terms a {
      color: #007bff;
      text-decoration: none;
    }
    .terms a:hover {
      text-decoration: underline;
    }