/* Resetowanie domyślnych stylów */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Styl ciała dokumentu */
  body {
    font-family: Arial, sans-serif;
    color: #fff;
    background: #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }
  
  /* Tło z motywem Minecrafta (przykład) */
  .bg-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    background: url('images/minecraft_bg.jpg') no-repeat center center/cover;
  }
  
  /* Przyciemnienie tła dla czytelności formularza */
  .bg-overlay::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
  }
  
  /* Główny kontener formularza */
  .login-container {
    position: relative;
    z-index: 1;
    max-width: 400px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(34, 34, 34, 0.8);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  }
  
  /* Nagłówki */
  .login-container h1 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #ff9800; /* np. pomarańczowy akcent nawiązujący do motywu Minecrafta */
  }
  
  .login-container h2 {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #ddd;
  }
  
  /* Formularz */
  .login-container form {
    display: flex;
    flex-direction: column;
    text-align: left;
  }
  
  /* Etykiety i pola */
  .login-container label {
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 0.9em;
  }
  
  .login-container input[type="text"],
  .login-container input[type="password"] {
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
    width: 100%;
  }
  
  /* Opcje logowania (zapamiętanie, link do hasła) */
  .login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9em;
  }
  
  .remember-me input {
    margin-right: 5px;
  }
  
  .forgot-password {
    color: #bbb;
    text-decoration: none;
  }
  
  .forgot-password:hover {
    text-decoration: underline;
  }
  
  /* Przycisk logowania */
  .btn-login {
    padding: 12px;
    background: #ff9800;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    color: #fff;
    font-weight: bold;
    transition: background 0.3s ease;
    margin-bottom: 15px;
  }
  
  .btn-login:hover {
    background: #ffb74d;
  }
  
  /* Oddzielenie przycisków */
  .divider {
    text-align: center;
    margin: 10px 0;
    color: #999;
  }
  
  /* Przycisk logowania przez Discord */
  .btn-discord {
    padding: 12px;
    background: #7289da; /* kolor Discorda */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    color: #fff;
    font-weight: bold;
    transition: background 0.3s ease;
    width: 100%;
  }
  
  .btn-discord:hover {
    background: #8ea1e1;
  }
  
  /* Link do rejestracji */
  .register-link {
    margin-top: 20px;
  }
  
  .register-link a {
    color: #ff9800;
    text-decoration: none;
    font-weight: bold;
  }
  
  .register-link a:hover {
    text-decoration: underline;
  }
  