/* GŁÓWNY WRAPPER - zajmuje całą dostępną wysokość */
.login-page-wrapper {
    display: flex;
    min-height: 100vh; /* Rozciąga się na wysokość okna */
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #f8f9fa;
}

/* SEKCJA OBRAZKA */
.login-image-section {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: block;
}

.login-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Zdjęcie wypełnia połowę ekranu */
}

.image-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.2); /* Delikatne przyciemnienie zdjęcia */
}


.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 193, 7, 0.3);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    width: 100%;
}

/* SEKCJA FORMULARZA */
.login-form-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    padding: 40px;
}

.login-box {
    width: 100%;
    max-width: 400px;
}

.login-box h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.signup-prompt {
    font-size: 14px;
    color: #666;
    margin-bottom: 35px;
}

.signup-prompt a {
    color: #e30613;
    font-weight: 600;
    text-decoration: underline;
}

/* GRUPY FORMULARZA */
.form-group-custom {
    margin-bottom: 25px;
    text-align: left;
}

.form-group-custom label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

.form-group-custom input {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group-custom input:focus {
    border-color: #e30613;
    outline: none;
}

/* LINKI I PRZYCISKI */
.forgot-password {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #777;
    text-decoration: underline;
}

.btn-submit-red {
    width: 100%;
    padding: 16px;
    background-color: #e30613; /* Czerwień ChceToAuto.pl */
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s;
    margin-top: 10px;
}

.btn-submit-red:hover {
    background-color: #c40510;
}

.btn-submit-red:active {
    transform: scale(0.98);
}

.login-footer-text {
    text-align: center;
    margin-top: 25px;
    font-size: 13px;
    color: #888;
}

.error-msg {
    background: #fdeaea;
    color: #d9534f;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: bold;
    border: 1px solid #f5c6cb;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 992px) {
    .login-image-section {
        display: none; /* Chowamy zdjęcie na tabletach i telefonach */
    }
    .login-form-section {
        flex: 1;
    }
}