body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0d1117;
    color: #c9d1d9;
  }
  
  .container {
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
    background-color: #161b22;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.8);
  }
  
  h1 {
    font-size: 1.5em;
    text-align: center;
    color: #f0f6fc;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  label {
    color: #f0f6fc;
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
  }
  
  input {
    background-color: #0d1117;
    width: calc(100% - 22px);
    padding: 10px;
    font-size: 1em;
    border: 1px solid #30363d;
    border-radius: 4px;
    outline: none;
    color: #c9d1d9;
  }
  
  input:focus {
    border-color: #58a6ff;
    box-shadow: 0 0 5px rgba(88, 166, 255, 0.3);
  }
  
  button {
    display: inline-block;
    padding: 10px 20px;
    width: 100%;
    font-size: 1em;
    color: #fff;
    background-color: #238636;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
  }
  
  button:hover {
    background-color: #2ea043;
    box-shadow: 0 0 20px rgba(35,134,54,0.3);
  }
  
  .link-group {
    text-align: center;
    margin-top: 20px;
  }
  
  a {
    color: #58a6ff;
    text-decoration: none;
  }
  
  a:hover {
    color:	#79c0ff;
    text-decoration: underline;
  }
  