:root{
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --soft-blue: #eef4ff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --line: #e2e8f0;
    --bg: #f8fafc;
}

*{
    box-sizing: border-box;
}

body{
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, #f8fbff 0%, #f5f7fb 100%);
    color: var(--text-main);
}

.bg-app{
    background: linear-gradient(180deg, #f8fbff 0%, #f5f7fb 100%);
}

.auth-wrapper{
    max-width: 1180px;
    width: 100%;
    min-height: 680px;
    border: 1px solid #eef2f7;
}

.auth-left{
    background: linear-gradient(180deg, #f7fbff 0%, #eef4ff 100%);
    position: relative;
}

.brand-title{
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.brand-subtitle{
    font-size: 1.1rem;
    color: var(--text-muted);
}

.left-heading{
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-main);
}

.left-text{
    max-width: 500px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.conversion-visual{
    min-height: 180px;
}

.visual-box{
    width: 130px;
    height: 130px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.08);
}

.visual-excel{
    background: #e8fff0;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.visual-db{
    background: #eef2ff;
    color: #4f46e5;
    border: 1px solid #c7d2fe;
}

.visual-arrow{
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: white;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    border: 1px solid var(--line);
}

.feature-pill{
    background: white;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 16px;
    color: var(--text-main);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-form-area{
    max-width: 520px;
    margin: 0 auto;
}

.auth-heading{
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-main);
}

.auth-subheading{
    color: var(--text-muted);
    font-size: 1rem;
}

.custom-input-group .input-group-text,
.custom-input-group .form-control{
    height: 56px;
    border-color: var(--line);
    font-size: 1rem;
}

.custom-input-group .input-group-text{
    color: #64748b;
}

.custom-input-group .form-control:focus{
    box-shadow: none;
    border-color: var(--primary);
}

.btn-primary-custom{
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.btn-primary-custom:hover{
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e40af 100%);
    color: white;
}

.forgot-link{
    color: var(--primary);
    font-weight: 500;
}

@media (max-width: 991px){
    .auth-wrapper{
        min-height: auto;
    }

    .auth-left{
        display: none !important;
    }

    .auth-heading{
        font-size: 2.2rem;
    }
}
/* =========================================================
   LOGIN - FORGOT PASSWORD NOTICE
========================================================= */

.forgot-password-notice{
    background: #eef4ff;
    border: 1px solid #dbeafe;
    color: #1e3a8a;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 0.92rem;
}

.forgot-password-notice i{
    color: #2563eb;
    font-size: 1.1rem;
}

.forgot-password-notice strong{
    display: block;
    margin-bottom: 4px;
    color: #0f172a;
}

.forgot-password-notice p{
    color: #475569;
    line-height: 1.45;
}