/* /Pages/LoginPage.razor.rz.scp.css */
/* Kontener główny - tło jasnoszare */
.login-container[b-pg8s7us4e5] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #F2F4F8;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    padding: 20px;
}

/* Karta logowania - biała z cieniem */
.login-card[b-pg8s7us4e5] {
    background: #FFFFFF;
    width: 100%;
    max-width: 420px;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    text-align: center;
    transition: height 0.3s ease;
}

/* Logo placeholder */
.logo-placeholder[b-pg8s7us4e5] {
    width: 48px;
    height: 48px;
    background: #0075EB; /* Revolut Blue */
    color: white;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

h3[b-pg8s7us4e5] {
    margin: 0 0 8px 0;
    font-size: 28px;
    font-weight: 700;
    color: #191C1F;
}

.subtitle[b-pg8s7us4e5] {
    color: #8B959E;
    margin-bottom: 32px;
    font-size: 15px;
    line-height: 1.5;
}

.form-content[b-pg8s7us4e5] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.input-group label[b-pg8s7us4e5] {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #8B959E;
    margin-bottom: 8px;
    margin-left: 4px;
}

/* Inputy w stylu fintech */
.fintech-input[b-pg8s7us4e5] {
    width: 100%;
    padding: 16px;
    border: 1px solid transparent;
    border-radius: 12px;
    background-color: #F3F4F6;
    font-size: 16px;
    color: #191C1F;
    transition: all 0.2s;
    box-sizing: border-box;
}

.fintech-input:focus[b-pg8s7us4e5] {
    outline: none;
    background-color: #ffffff;
    border-color: #0075EB;
    box-shadow: 0 0 0 4px rgba(0, 117, 235, 0.1);
}

[b-pg8s7us4e5] .fintech-input.valid {
    /* Opcjonalnie: styl dla poprawnego pola */
    border-color: transparent;
}
[b-pg8s7us4e5] .fintech-input.invalid {
    border-color: #E11900;
    background-color: rgba(225, 25, 0, 0.03);
}

/* Przycisk akcji */
.action-btn[b-pg8s7us4e5] {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background-color: #0075EB;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
}

.action-btn:hover[b-pg8s7us4e5] {
    background-color: #005BB5;
}

.action-btn:disabled[b-pg8s7us4e5] {
    background-color: #B0D5FF;
    cursor: not-allowed;
}

/* "Pastylka" z emailem */
.user-pill[b-pg8s7us4e5] {
    background: #E8F2FF;
    color: #0075EB;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border: 1px solid transparent;
    transition: 0.2s;
}

.user-pill:hover[b-pg8s7us4e5] {
    background: #D6E8FF;
    border-color: #B0D5FF;
}

.change-link[b-pg8s7us4e5] {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.8;
}

/* Linki w stopce */
.footer-link[b-pg8s7us4e5] {
    margin-top: 24px;
}

.footer-link a[b-pg8s7us4e5] {
    color: #0075EB;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

/* Błędy */
.error-message[b-pg8s7us4e5] {
    color: #E11900;
    font-size: 13px;
    background: rgba(225, 25, 0, 0.05);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

[b-pg8s7us4e5] .validation-message {
    color: #E11900;
    font-size: 12px;
    margin-top: 5px;
    margin-left: 4px;
}

/* Spinner ładowania */
.spinner[b-pg8s7us4e5] {
    display: inline-block;
    width: 20px;
    height: 20px;
}
