﻿.login-outer {
    min-height: calc(100vh - 140px); /* minus topbar/footer */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

/* Karta přihlášení */
.login-wrap {
    max-width: 420px;
    width: 100%;
    padding: 24px 20px;
    background: #fff;
    border: 1px solid var(--line, #eae7e3);
    border-radius: 12px;
    box-shadow: var(--shadow, 0 2px 12px rgba(0,0,0,.06));
}

    .login-wrap h1 {
        font-size: 22px;
        margin: 0 0 14px;
        text-align: left;
    }

.row {
    margin: 10px 0;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}

.input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--line,#eae7e3);
    border-radius: 10px;
    background: #fff;
    box-sizing: border-box;
}

.login-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
}

.btn {
    padding: 8px 16px;
    border-radius: 10px;
    border: 1px solid var(--line,#eae7e3);
    cursor: pointer;
    background: #fff;
    font-weight: 500;
}

.btn-primary {
    background: var(--brand,#2a9aa5);
    border-color: transparent;
    color: #fff;
}

    .btn-primary:hover {
        background: #248992;
    }

.err {
    margin-top: 10px;
    color: #c0392b;
}
