* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f9f9f9;
  }
  
  .container {
    background: #fff;
    padding: 25px 30px;
    border-radius: 10px;
    width: 380px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .container h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .input-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
  }
  
  .input-group label {
    font-size: 14px;
    margin-bottom: 5px;
  }
  
  .input-group input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  button {
    width: 100%;
    padding: 10px;
    background: #fa7600;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
  }
  
  button:hover {
    background: #d66400;
  }
  
  .redirect {
    text-align: center;
    margin-top: 10px;
  }
  
  .redirect a {
    color: #fa7600;
    text-decoration: none;
  }
  .redirect a:hover {
    text-decoration: underline;
  }