* {
    box-sizing: border-box;
    font-family:
        "Inter", "Source Sans 3", Helvetica, Arial, sans-serif !important;
}

body {
    background: #f0f4f8;
    margin: 0;
}

/* ── Page ── */
.lt-login-page {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1f36 0%, #303030 50%, #1a1f36 100%) !important;
    position: relative;
    overflow: hidden;
}

.lt-login-page::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.08);
    top: -150px;
    right: -150px;
    pointer-events: none;
}

.lt-login-page::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.06);
    bottom: -100px;
    left: -100px;
    pointer-events: none;
}

/* ── Card ── */
.lt-login-card {
    width: 100%;
    max-width: 440px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
    padding: 48px 30px 40px;
    position: relative;
    z-index: 1;
}

/* ── Brand ── */
.lt-brand-section {
    text-align: center;
    margin-bottom: 36px;
}

.lt-brand-icon {
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
}

.lt-brand-icon img {
    width: 75%;
    height: 100%;
    object-fit: cover;
}

.lt-brand-icon i {
    font-size: 24px;
    color: #fff;
}

.lt-brand-title {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px;
    letter-spacing: -0.3px;
}

.lt-brand-subtitle {
    font-size: 13.5px;
    color: #64748b;
    margin: 0;
}

/* ── Panel ── */
.lt-panel {
    animation: lt-fadeIn 0.3s ease forwards;
}

.lt-panel.lt-hidden {
    display: none;
}

@keyframes lt-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Form ── */
.lt-form-label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lt-input-group {
    position: relative;
    margin-bottom: 18px;
}

.lt-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 16px;
    pointer-events: none;
    transition: color 0.2s;
}

.lt-form-control {
    width: 100%;
    padding: 11px 14px 11px 42px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #0f172a;
    background: #f8fafc;
    outline: none;
    transition:
        border-color 0.2s,
        box-shadow 0.2s,
        background 0.2s;
}

.lt-form-control:focus {
    border-color: #6366f1;
    /* box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12); */
    background: #fff;
}

.lt-input-group:focus-within .lt-input-icon {
    color: #6366f1;
}

/* ── Password ── */
.lt-password-wrapper {
    position: relative;
}

.lt-toggle-password {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #9ca3af;
    font-size: 16px;
    line-height: 1;
    transition: color 0.2s;
}

.lt-toggle-password:hover {
    color: #6366f1;
}

/* ── Forgot link ── */
.lt-forgot-link {
    font-size: 12.5px;
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
    background: none;
    border: none;
    padding: 0;
}

.lt-forgot-link:hover {
    color: #4f46e5;
    text-decoration: underline;
}

/* ── Row between ── */
.lt-row-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

/* ── Buttons ── */
.lt-btn-primary {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    transition:
        opacity 0.2s,
        transform 0.15s,
        box-shadow 0.2s;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.lt-btn-primary:hover {
    opacity: 0.93;
    transform: translateY(-1px);
}

.lt-btn-primary:active {
    transform: translateY(0);
}

.lt-btn-secondary {
    background: none;
    border: 1.5px solid #e2e8f0;
    color: #64748b;
    border-radius: 8px;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition:
        border-color 0.2s,
        color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lt-btn-secondary:hover {
    border-color: #6366f1;
    color: #6366f1;
}

/* ── Forgot panel header ── */
.lt-panel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.lt-panel-header-text h5 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 2px;
}

.lt-panel-header-text p {
    font-size: 12.5px;
    color: #64748b;
    margin: 0;
}

/* ── Alert ── */
.lt-alert-info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 13px;
    color: #1e40af;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.lt-alert-info i {
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── Remember row ── */
.lt-remember-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.lt-remember-row input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: #6366f1;
    cursor: pointer;
}

.lt-remember-row label {
    font-size: 13px;
    color: #64748b;
    cursor: pointer;
    margin: 0;
}
