/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
      Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, #1a1a1a, #ff6600);
    color: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  
  /* Main container */
  .container {
    background-color: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  }
  
  /* Logo */
  .logo {
    width: 140px;
    margin-bottom: 24px;
  }
  
  /* Typography */
  h2 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
  }
  
  p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  
  /* Button */
  .button {
    display: inline-block;
    background-color: #ff6600;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
  }
  
  .button:hover {
    background-color: #e65500;
  }
  .input {
    width: 100%;
    padding: 14px 16px;
    margin: 10px 0 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  }
  
  .input::placeholder {
    color: rgba(255, 255, 255, 0.6);
  }
  
  .button {
    padding: 12px 20px;
    background-color: #fb923c;
    color: white;
    font-weight: bold;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
  }
  
  .button:hover {
    background-color: #ea7b1f;
  }
  
  .message {
    margin-top: 12px;
    font-size: 14px;
    color: white;
    text-align: center;
  }
  