* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: url('https://rozjebka.site/home/img/minecraft-dark.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .login-container {
    background: rgba(29, 30, 36, 0.9);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 350px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  }
  
  .login-container img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 3px solid #1f232e;
  }
  
  .login-container h2 {
    color: #fff;
  }
  
  .login-container input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    background: #1d1e24;
    color: white;
  }
  
  .login-container input[type="submit"] {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background: #6aabba;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.login-container input[type="submit"]:hover {
    background: #5b8395;
}

.login-container a {
    color: #689ca5;
    text-decoration: none;
    display: block;
    margin-top: 10px;
}