/* Login page */
body.tpe-auth-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f2942 0%, #16395c 60%, #0a1c2e 100%);
}

.tpe-auth-shell {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.tpe-auth-card {
    width: 100%;
    background: #fff;
    border-radius: .75rem;
    padding: 2rem 1.75rem;
    box-shadow: 0 20px 45px rgba(0,0,0,.25);
}

.tpe-auth-logo {
    width: 64px;
    height: 64px;
    border-radius: .6rem;
    background: #0f2942;
    color: #f5821f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1rem;
}

.tpe-auth-card .btn-orange { width: 100%; }

[data-bs-theme="dark"] .tpe-auth-card { background: #111827; color: #e5e7eb; }
