/* ── TARA Auth – Login page styles ──────────────────────────────────────── */

.tara-login-wrapper {
    margin: 20px 0 16px;
    text-align: center;
}

/* Divider "või" (or) */
.tara-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #646970;
    font-size: 13px;
}

.tara-divider::before,
.tara-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #dcdcde;
}

/* TARA button */
.tara-login-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    background: #003DA5;   /* Estonian government blue */
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid #003DA5;
    box-sizing: border-box;
    transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
    cursor: pointer;
}

.tara-login-button:hover,
.tara-login-button:focus {
    background: #002d7a;
    border-color: #002d7a;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 45, 122, 0.35);
    outline: none;
}

.tara-login-button:active {
    background: #001e52;
    border-color: #001e52;
    box-shadow: none;
}

.tara-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.tara-logo svg {
    display: block;
}

/* Hint text (Smart-ID, Mobiil-ID...) */
.tara-hint {
    margin: 8px 0 0;
    color: #646970;
    font-size: 12px;
}

/* Error message shown after failed TARA auth */
.tara-login-error {
    background: #fcf0f1;
    border: 1px solid #d63638;
    border-left: 4px solid #d63638;
    color: #1d2327;
    padding: 10px 12px;
    margin-bottom: 16px;
    font-size: 13px;
    border-radius: 2px;
    word-break: break-word;
}

/* Access denied message on frontend */
.tara-access-denied {
    background: #fff8e5;
    border: 1px solid #dba617;
    border-left: 4px solid #dba617;
    color: #1d2327;
    padding: 12px 16px;
    margin: 16px 0;
    border-radius: 2px;
}

/* Responsive tweak */
@media (max-width: 400px) {
    .tara-login-button {
        font-size: 13px;
        padding: 10px 12px;
    }
}
