/* 🌙 Ogólne style */
body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

/* 🔹 Kontener na logo */
.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

/* 🔹 Logo */
.logo {
    width: 150px;
}

/* 🔹 Kontenery logowania/rejestracji */
.login-container, .register-container {
    background: #1e1e1e;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    text-align: center;
    width: 350px;
}

/* 🔹 Nagłówek */
h1 {
    color: #00ffff;
    margin-bottom: 20px;
}

/* 🔹 Formularz */
form {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 1rem;
    text-align: left;
    margin-bottom: 5px;
    color: #00ffff;
}

input {
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    background: #333;
    color: #00ffff;
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
    text-align: center;
}

input:focus {
    outline: none;
    border: 1px solid #00ffff;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.6);
}

/* 🔹 Przycisk logowania/rejestracji */
button {
    padding: 10px;
    background: #00ffcc;
    color: #000;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    transition: 0.3s;
}

button:hover {
    background: #00cc99;
}

/* 🔹 Tekst i przycisk dla rejestracji/logowania */
.register-text, .login-text {
    margin-top: 15px;
    font-size: 0.9rem;
}

.register-btn, .login-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px;
    background: #00ffff;
    color: #000;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    transition: 0.3s;
}

.register-btn:hover, .login-btn:hover {
    background: #00ccff;
}
