:root {
    --brand-dark: #0f172a;
    --brand-accent: #3b82f6;
    --glass-bg: rgba(255, 255, 255, 0.95);
}

body,
html {
    height: 100%;
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    overflow-x: hidden;
}

.split-container {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* LEFT SIDE: Branding & Visuals */
.visual-pane {
    flex: 1.2;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.visual-pane::after {
    content: "";
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.visual-pane h1 {
    font-weight: 800;
    font-size: 3.5rem;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.visual-pane h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--brand-accent);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.visual-pane p {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 500px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* FEATURE ICONS (Related to Password Recovery) */
.hris-features {
    display: flex;
    gap: 35px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #64748b;
    transition: all 0.3s ease;
}

.feature-item:hover {
    color: var(--brand-accent);
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 1.8rem;
}

.feature-item span {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* RIGHT SIDE: Floating Card */
.form-pane {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 20px 20px;
    padding: 20px;
}

.floating-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 420px;
    padding: 25px 35px;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    animation: floatIn 0.6s ease-out;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
}

.brand-logos img:first-child {
    height: 75px;
    width: auto;
    object-fit: contain;
}

.brand-logos img:last-child {
    height: 103px;
    width: auto;
    object-fit: contain;
    margin-left: 5px;
}

.form-title {
    font-weight: 700;
    font-size: 2rem;
    color: #1e293b;
    margin-top: 0;
    margin-bottom: 2px;
}

.form-subtitle {
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.input-wrapper {
    margin-bottom: 18px;
    position: relative;
}

.input-wrapper label {
    display: block;
    font-weight: 600;
    font-size: 0.8rem;
    color: #475569;
    margin-bottom: 5px;
}

.form-control {
    height: 48px;
    border-radius: 10px;
    border: 1.5px solid #e2e8f0;
    padding-left: 40px;
    font-size: 1rem;
}

.input-wrapper i {
    position: absolute;
    left: 14px;
    bottom: 15px;
    color: #94a3b8;
    font-size: 0.9rem;
}

.btn-primary-custom {
    background-color: var(--brand-dark);
    color: white;
    width: 100%;
    height: 48px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    margin-top: 5px;
    margin-bottom: 5px;
    transition: 0.2s;
}

.btn-primary-custom:hover {
    background-color: #1e293b;
    transform: translateY(-1px);
}

.footer-text {
    text-align: center;
    margin-top: 15px;
    font-size: 0.8rem;
    color: #64748b;
}

.footer-text a {
    color: var(--brand-accent);
    font-weight: 600;
    text-decoration: none;
}

footer.desktop-footer {
    position: fixed;
    bottom: 0px;
    right: 15px;
    font-size: 10px;
    color: #94a3b8;
    font-weight: 500;
    z-index: 10;
}

@media (max-width: 991px) {
    .visual-pane {
        display: none;
    }

    .split-container {
        flex-direction: column;
    }

    .form-pane {
        background-color: #f8fafc;
    }

    .floating-card {
        border: none;
        box-shadow: none;
        background: transparent;
    }

    .brand-logos img:first-child {
        height: 50px;
    }

    .brand-logos img:last-child {
        height: 75px;
    }
}
