/* Global styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background: url('../img/background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* Login Container */
.login-container {
    width: 400px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7); /* Półprzezroczyste tło */
    backdrop-filter: blur(10px); /* Rozmycie tła */
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

/* Form styling */
.login-container h2 {
    margin-bottom: 20px;
}

.login-container input {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.login-container input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.login-container button {
    width: 100%;
    padding: 10px;
    background-color: #ff9800;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.login-container button:hover {
    background-color: #e68900;
}

/* Login error message */
#login-error {
    display: none;
    color: red;
    margin-top: 10px;
    font-weight: bold;
}
button:active {
    transform: scale(0.96);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3) inset;
    transition: transform 0.05s ease;
}
/* Hero Container */
.hero-container {
    max-width: 600px;
    width: 90%;
    padding: 25px;
    background: rgba(255, 255, 255, 0.2); /* Jasny niebieski z przezroczystością */
    backdrop-filter: blur(6px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 128, 255, 0.3);
    margin: 20px 0;
    text-align: center;
    color: white;
}

.hero-container h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.hero-container p {
    font-size: 16px;
    margin: 5px 0;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;  /* Wyśrodkowanie poziome */
    width: 100%;  /* Pełna szerokość */
}
/* Wyróżniona główna wiadomość powitalna */
.highlight-main {
    font-weight: bold;
    color: #ff5e00; /* Jasny błękit */
    text-shadow: 0 0 8px rgba(255, 85, 0, 0.9);
}

/* Wyróżnienie adresu IP w sekcji hero */
.highlight-ip-hero {
    font-weight: bold;
    color: #ffcc00; /* Złoty/żółty */
    text-shadow: 0 0 8px rgba(255, 204, 0, 0.8);
}





