/* UAE PASS Connect — button + notices.
   Layout follows the UAE PASS Design Guidelines button spec (dark button,
   white logotype, full-width on forms). Swap the mark for the official SVG
   from docs.uaepass.ae -> Resources -> Assets before the TDRA design check. */

.tgc-uaepass-wrap {
    margin: 1em 0;
    text-align: center;
}

.tgc-uaepass-divider {
    display: flex;
    align-items: center;
    gap: .75em;
    color: #767676;
    font-size: .85em;
    margin-bottom: .9em;
}
.tgc-uaepass-divider::before,
.tgc-uaepass-divider::after {
    content: "";
    flex: 1;
    border-top: 1px solid #ddd;
}

.tgc-uaepass-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6em;
    width: 100%;
    max-width: 420px;
    padding: .8em 1.4em;
    background: #000000;            /* UAE PASS primary button: black */
    color: #ffffff !important;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background .15s ease;
}
.tgc-uaepass-btn:hover { background: #222; }

.tgc-uaepass-mark {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 42%, #ffffff 0 34%, transparent 35%),
        conic-gradient(#00732f 0 33%, #ffffff 33% 66%, #000 66% 100%);
    outline: 1px solid #444;
}

.tgc-uaepass-note {
    margin-top: .5em;
    font-size: .78em;
    color: #767676;
}

.tgc-uaepass-toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    max-width: 560px;
    padding: .9em 1.2em;
    border-radius: 8px;
    background: #1d2327;
    color: #fff;
    z-index: 99999;
    box-shadow: 0 6px 24px rgba(0,0,0,.25);
}
.tgc-uaepass-toast--success { background: #00732f; }
.tgc-uaepass-toast--error   { background: #b32d2e; }

.tgc-age-badge {
    display: inline-block;
    padding: .35em .7em;
    border: 2px solid #b32d2e;
    color: #b32d2e;
    border-radius: 4px;
    font-weight: 700;
    font-size: .85em;
}

.tgc-uaepass-panel { margin-top: 1.5em; }
.tgc-uaepass-status--ok   { color: #00732f; font-weight: 600; }
.tgc-uaepass-status--warn { color: #996800; font-weight: 600; }
