body {
    background: url('image/icon/Chance@4x.png') no-repeat center center fixed;
    background-size: cover;
    font-family: "Segoe UI", sans-serif;
    color: #222;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
  }
  
  .login-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    text-align: left;
  }
  
  .login-container h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: #333;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
  }
  
  .form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }
  
  .form-group input:focus {
    outline: none;
    border-color: #facc15;
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.2);
  }
  
  .login-button {
    display: block;
    width: 200%;
    padding: 12px 16px;
    background-color: #fbd065;
    color: #000;
    border: none;
    border-radius: 9999px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
  }
  
  .login-button:hover {
    background-color: #fde047;
    transform: scale(1.03);
  }
  