/* Główne ustawienia tła - głęboki, czysty granat z Twojej strony */
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', 'Segoe UI', Helvetica, Arial, sans-serif;
    background-color: #020b1e;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Kontener trzymający wszystko na środku */
.main-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

/* Karta logowania - elegancka, dopasowana szerokość */
.login-card {
    background-color: #05122c; /* Nieco jaśniejszy odcień granatu dla odcięcia od tła */
    padding: 40px;
    border-radius: 12px;
    width: 100%;
    max-width: 440px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
}

/* Logo na samej górze */
.coach-logo {
    max-width: 220px;
    height: auto;
    margin-bottom: 25px;
}

/* Główny napis */
.brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
    color: #ffffff;
    text-transform: uppercase;
}

/* Twoje nowe hasło */
.slogan {
    color: #a4b3cc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 30px 0;
}

/* Formularz i odstępy */
.input-group {
    text-align: left;
    margin-bottom: 20px;
}

/* Etykiety nad polami - białe i czyste */
label {
    display: block;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Pola tekstowe - ciemnogranatowe z delikatną ramką */
input {
    width: 100%;
    padding: 14px;
    background-color: #0c1a3a;
    border: 1px solid #1e315c;
    border-radius: 6px;
    color: #ffffff;
    font-size: 1rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* Efekt po kliknięciu w pole - podświetlenie na pomarańczowo */
input:focus {
    outline: none;
    border-color: #f46a06;
    background-color: #10224b;
}

/* Profesjonalny, mocny, pomarańczowy przycisk */
button {
    width: 100%;
    padding: 15px;
    background-color: #f46a06; /* Dokładny pomarańcz z grafiki */
    border: none;
    border-radius: 6px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

/* Efekt najechania na przycisk - delikatne ściemnienie */
button:hover {
    background-color: #d65900;
}

button:active {
    transform: scale(0.98);
}

/* Tekst rejestracji na dole */
.register-text {
    margin-top: 25px;
    font-size: 0.9rem;
    color: #a4b3cc;
}

.register-text a {
    color: #f46a06;
    text-decoration: none;
    font-weight: 600;
}

.register-text a:hover {
    text-decoration: underline;
}
/* Klasa do ukrywania elementów */
.hidden {
    display: none !important;
}

/* Styl dla przycisku wylogowania */
.logout-style {
    background-color: transparent;
    border: 2px solid #f46a06;
    color: #f46a06;
    margin-top: 20px;
}
.logout-style:hover {
    background-color: #f46a06;
    color: #ffffff;
}
/* Stylizacja linku przełączającego widok logowania i rejestracji */
.toggle-link {
    color: #f46a06 !important;
    text-decoration: none !important;
    font-weight: bold;
    font-size: 14px;
    transition: color 0.2s ease;
}

.toggle-link:hover {
    color: #d15600 !important;
    text-decoration: underline !important;
}