body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
  }
  
  .container {
    max-width: 420px;
    margin: 60px auto;
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
  }
  
  h1 {
    text-align: center;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  input, button {
    padding: 10px;
    font-size: 14px;
  }
  
  button {
    background: black;
    color: white;
    border: none;
    cursor: pointer;
  }
  
  button:hover {
    opacity: 0.85;
  }
  
  #status {
    margin-top: 15px;
    text-align: center;
  }
  