body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #000000, #8b0000);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
  }
  
  .container {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
    width: 100%;
    max-width: 500px;
    text-align: center;
  }
  
  .logo {
    width: 120px;
    margin-bottom: 20px;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="password"],
  select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 6px;
    background-color: #222;
    color: #fff;
  }
  
  button {
    background-color: #d32f2f;
    border: none;
    color: white;
    padding: 10px;
    width: 100%;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 15px;
    transition: 0.3s ease;
  }
  
  button:hover {
    background-color: #b71c1c;
  }
  
  a {
    color: #ffcccb;
    text-decoration: none;
    margin: 5px;
    display: inline-block;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: rgba(255, 255, 255, 0.05);
  }
  
  table th, table td {
    border: 1px solid #555;
    padding: 10px;
    text-align: left;
  }
  
  table th {
    background-color: #b71c1c;
    color: #fff;
  }
  
  table tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.05);
  }