:root {
    --lpx-logo: url('/images/logo/leptonxlite/logo-light-thumbnail.png');
    --lpx-logo-icon: url('/images/logo/leptonxlite/logo-light-thumbnail.png');
}

:root .abp-account-layout .lpx-brand-logo {
    --lpx-logo: url('/images/logo/logo.svg');
    background-position: left;
    background-color: #3B82F6;
    background-size: auto;
    border-radius: 16px;
}

.flex-col {
    flex-direction: column;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.gap-4 {
    gap: 1rem;
}

.gap-3 {
    gap: 0.75rem;
}

.p-16 {
    padding: 4rem;
}

.p-8 {
    padding: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

/* Branding Colors */
.bg-brand-blue {
    background-color: #3B82F6;
}

.text-brand-purple {
    color: #3B82F6;
}

.text-white {
    color: white;
}

.text-slate-900 {
    color: #0f172a;
}

.text-slate-600 {
    color: #475569;
}

.text-slate-500 {
    color: #64748b;
}

/* Typography */
.font-black {
    font-weight: 900 !important;
}

.font-bold {
    font-weight: 700;
}

.font-medium {
    font-weight: 500;
}

.uppercase {
    text-transform: uppercase;
}

.italic {
    font-style: italic;
}

.tracking-tighter {
    letter-spacing: -0.05em;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.leading-none {
    line-height: 1;
}

.hidden {
    display: none !important;
}

.btn-primary {
    width: 100%;
    padding: 1.25rem;
    background-color: #3B82F6;
    color: #e6e4ee;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.2s;
}


.input-field {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    border: 2px solid #e2e8f0;
    background: white;
    color: #0f172a;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s;
    outline: none;
}

.input-field:focus {
    border-color: #3B82F6;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.2);
    background-color: white;
}

.btn-primary:hover {
    transform: translateY(-1px);
    background-color: #3B82F6;
    color: #e6e4ee;
}

.btn-primary:active {
    background-color: #3B82F6 !important;
    color: #e6e4ee !important;
}

.error-summary {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.5);
    border-radius: 1rem;
    color: #dc2626;
    font-size: 0.875rem;
    font-weight: 700;
}

.field-validation-error {
    color: #ef4444;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.25rem;
    display: block;
}

.logo-style {
    border-radius: 12px;
    padding: 2px;
}

.lpx-content .card .card-body {
    padding: 0;
}

.text-center {
    text-align: center;
}