/* Reset/base */
* {
    box-sizing: border-box;
  }
  body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background: url('/img/bg.jpg') no-repeat center center;
    background-size: cover;
    color: #333;
    justify-content: center;  /* Horizontal centering */
    align-items: center;      /* Vertical centering */
    display: flex;
    height: 100vh;
  }
  
  .h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
  }
  /* Container */
  .container {
    width: 90%;
    max-width: 550px;
    margin: 55px auto;
    padding: 35px 55px 35px 55px;    
    background: rgba(33, 33, 33, 0.55);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  }
  
  /* Forms */
  form input[type="password"],
  form select {
    width: 100%;
    padding: 12px;
    margin: 10px 0 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  form button {
    width: 100%;
    padding: 12px;
    background: #007BFF;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  form button:hover {
    background: #0056b3;
  }
  
  /* Headings */
  h2 {
    text-align: center;
    margin-bottom: 25px;
  }
  
  /* Paragraphs */
  p.success { color: green; }
  p.error   { color: red; }
  
  ul {
    list-style: none;
    padding: 0;
  }
  
  ul li a {
    display: block;
    padding: 12px;
    background: #f0f0f0;
    border-radius: 6px;
    margin: 10px 0;
    color: #007BFF;
    text-decoration: none;
    text-align: center;
  }
  ul li a:hover {
    background: #e0e0e0;
  }
  
  /* Responsive tweaks */
  @media (max-width: 480px) {
    h2 {
      font-size: 1.2rem;
    }
  
    form button {
      padding: 14px;
    }
  }