/* Plik: style_login.css - NOWA WERSJA */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    height: 100vh;
    overflow: hidden; /* Zapobiega przewijaniu */
}

.login-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
}

/* --- Lewa strona (Branding) --- */
.login-branding {
    flex: 1;
    background: linear-gradient(135deg, #6a9ac7, #5e8ab8);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.branding-content .logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    margin-bottom: 20px;
}

.branding-content .logo-img {
    height: 60px;
}

.branding-content .logo-text {
    font-size: 42px;
    font-weight: 300;
    margin-left: 15px;
}

.branding-content .logo-text strong {
    font-weight: 700;
}

.branding-content p {
    font-size: 1.2em;
    font-weight: 300;
    opacity: 0.8;
}

/* --- Prawa strona (Formularz) --- */
.login-form-container {
    flex: 1;
    background-color: #f4f7f6;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-wrapper {
    width: 380px;
    padding: 40px;
}

.form-wrapper h2 {
    font-size: 2em;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.form-wrapper p {
    margin-bottom: 30px;
    color: #666;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 14px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #5e8ab8;
    box-shadow: 0 0 0 3px rgba(94, 138, 184, 0.2);
}

.btn {
    padding: 14px 15px;
    background-color: #5e8ab8;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #4a6d91;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
}