/* ============================================================
   LOGIN PAGE CSS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ============================================================
   VARIABLES
   ============================================================ */

:root{

    --blue:#2B5CE6;
    --dark:#09143F;
    --white:#ffffff;
    --text:#6B7280;
    --border:#E2E8F0;
    --bg:#EEF2FA;
}

/* ============================================================
   RESET
   ============================================================ */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{

    width:100%;
    height:100%;
    overflow:hidden;

    font-family:'Poppins',sans-serif;

    background:#EEF2FA;
}

/* ============================================================
   WRAPPER
   ============================================================ */

.login-wrapper{

    width:100%;
    height:100vh;

    overflow:hidden;
}

.container-fluid{

    width:100%;
    height:100%;

    padding:0 !important;
}

.row{

    width:100%;
    height:100vh;

    margin:0 !important;
}

/* ============================================================
   LEFT PANEL
   ============================================================ */

.left-panel{

    height:100vh;

    position:relative;

    overflow:hidden;

    padding:0;

    background:
    linear-gradient(
    rgba(1,14,45,0.45),
    rgba(1,14,45,0.52)
    ),
    url('../../images/login_page_images/background.png');

    background-size:100% 100%;
    background-position:center;
    background-repeat:no-repeat;
}

/* ============================================================
   LEFT CONTENT
   ============================================================ */

.branding-content{

    width:100%;
    height:100%;

    display:flex;
    flex-direction:column;

    justify-content:space-evenly;

    position:relative;
    z-index:2;

    padding:38px 42px 34px;
}

/* ============================================================
   LOGO
   ============================================================ */

.logo-section{

    width:100%;

    display:flex;
    justify-content:center;
    align-items:center;

    margin:0;
}

.brand-logo{

    width:280px;

    max-width:100%;

    object-fit:contain;
}

/* ============================================================
   TITLE SECTION
   ============================================================ */

.title-section{

    margin:0;
}

/* ============================================================
   TITLE
   ============================================================ */

.title-section h1{

    font-size:3.6rem;
    line-height:1.03;

    font-weight:800;

    color:#ffffff;

    margin-bottom:14px;
}

.title-section h1 span{

    color:#2B74FF;
}

/* ============================================================
   LINE
   ============================================================ */

.title-divider{

    width:56px;
    height:4px;

    border-radius:20px;

    background:#2B74FF;

    margin-bottom:18px;
}

/* ============================================================
   DESCRIPTION
   ============================================================ */

.brand-desc{

    max-width:560px;

    color:rgba(255,255,255,0.90);

    font-size:1rem;
    line-height:1.7;
}

/* ============================================================
   FEATURES
   ============================================================ */

.features-row{

    display:flex;
    gap:18px;

    margin:0;
}

/* ============================================================
   FEATURE CARD
   ============================================================ */

.feature-item{

    flex:1;

    min-height:160px;

    background:rgba(8,28,77,0.34);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:24px;

    backdrop-filter:blur(10px);

    padding:16px 14px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;
}

/* ============================================================
   ICON
   ============================================================ */

.feature-icon{

    width:66px;
    height:66px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:14px;

    background:
    radial-gradient(circle,
    rgba(41,116,255,1),
    rgba(0,33,109,1));

    box-shadow:
    0 0 28px rgba(41,116,255,0.34);
}

/* ============================================================
   ICON INSIDE
   ============================================================ */

.feature-icon i{

    font-size:28px;

    color:#ffffff;
}

/* ============================================================
   FEATURE TITLE
   ============================================================ */

.feature-item h6{

    color:#ffffff;

    font-size:1.08rem;
    font-weight:700;

    margin-bottom:4px;
}

/* ============================================================
   FEATURE TEXT
   ============================================================ */

.feature-item span{

    color:rgba(255,255,255,0.85);

    font-size:0.88rem;

    line-height:1.4;
}

/* ============================================================
   RIGHT PANEL
   ============================================================ */

.right-panel{

    height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#EEF2FA;

    padding:24px 40px;
}

/* ============================================================
   LOGIN CARD
   ============================================================ */

.login-card{

    width:100%;
    max-width:560px;

    background:#ffffff;

    border-radius:32px;

    padding:30px 36px 26px;

    box-shadow:
    0 8px 35px rgba(0,0,0,0.06);
}

/* ============================================================
   HEADER
   ============================================================ */

.card-top{

    text-align:center;

    margin-bottom:20px;
}

/* ============================================================
   AVATAR
   ============================================================ */

.avatar-circle{

    width:64px;
    height:64px;

    border-radius:50%;

    background:#EEF2FF;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 14px;
}

.avatar-circle i{

    font-size:28px;

    color:#2B5CE6;
}

/* ============================================================
   HEADING
   ============================================================ */

.welcome-heading{

    font-size:2.4rem;
    font-weight:700;

    color:#09143F;

    margin-bottom:6px;
}

/* ============================================================
   SUBTEXT
   ============================================================ */

.welcome-sub{

    font-size:1rem;

    color:#7B8191;

    margin-bottom:14px;
}

/* ============================================================
   LINE
   ============================================================ */

.welcome-bar{

    width:52px;
    height:4px;

    border-radius:20px;

    background:#2B5CE6;

    margin:auto;
}

/* ============================================================
   FORM
   ============================================================ */

.field-group{

    margin-bottom:16px;
}

/* ============================================================
   PASSWORD TOP
   ============================================================ */

.password-top{

    display:flex;
    align-items:center;
    justify-content:space-between;

    margin-bottom:8px;
}

/* ============================================================
   LABEL
   ============================================================ */

.field-label{

    font-size:1rem;
    font-weight:600;

    color:#09143F;

    margin-bottom:8px;
}

/* ============================================================
   FORGOT
   ============================================================ */

.forgot-link{

    font-size:0.9rem;

    color:#2B5CE6;

    text-decoration:none;
}

/* ============================================================
   INPUT WRAP
   ============================================================ */

.input-wrap{

    position:relative;

    width:100%;
}

/* ============================================================
   INPUT
   ============================================================ */

.custom-input{

    width:100%;

    height:58px;

    border:1px solid #DCE3EF;

    border-radius:18px;

    background:#ffffff;

    padding-left:52px;

    padding-right:52px;

    outline:none;

    font-size:15px;

    color:#09143F;

    transition:0.3s ease;
}

.custom-input::placeholder{

    color:#9AA3B5;
}

.custom-input:focus{

    border-color:#2B5CE6;

    box-shadow:0 0 0 4px rgba(43,92,230,0.10);
}
/* ============================================================
   INPUT ICON
   ============================================================ */

.input-prepend-icon{

    position:absolute;

    left:18px;

    top:50%;

    transform:translateY(-50%);

    color:#94A3B8;

    font-size:18px;

    z-index:2;

    pointer-events:none;
}

/* ============================================================
   EYE ICON
   ============================================================ */

.pwd-toggle{

    position:absolute;

    right:14px;

    top:50%;

    transform:translateY(-50%);

    width:34px;
    height:34px;

    border:none;
    background:transparent;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    z-index:99;
}

.pwd-toggle i{

    color:#94A3B8;

    font-size:18px;
}

.pwd-toggle:hover i{

    color:#2B5CE6;
}

.password-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:8px;
}

.password-header .field-label{
    margin:0;
}

.forgot-link{
    color:#2563eb;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
}

.error-text{

    color:#EF4444;

    font-size:13px;

    font-weight:500;

    margin-top:6px;

    margin-left:4px;
}

.login-error-alert{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    margin:18px 0 20px;

    color:#DC2626;

    font-size:15px;
    font-weight:600;
}

.login-error-alert i{

    color:#DC2626;
    font-size:18px;
}

/* ============================================================
   REMEMBER
   ============================================================ */

.remember-row{

    display:flex;
    align-items:center;
    gap:10px;

    margin-bottom:20px;
}

.remember-check{

    width:18px;
    height:18px;
}

.remember-text{

    font-size:0.98rem;

    color:#2B3147;
}

/* ============================================================
   BUTTON
   ============================================================ */

.btn-signin{

    width:100%;
    height:58px;

    border:none;

    border-radius:18px;

    background:
    linear-gradient(
    to right,
    #2B66FF,
    #003CFF
    );

    color:#ffffff;

    font-size:1rem;
    font-weight:600;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    transition:0.3s ease;
}

.btn-signin:hover{

    transform:translateY(-2px);

    box-shadow:
    0 14px 24px rgba(43,92,230,0.28);
}

.btn-signin i{

    font-size:1.1rem;
}

/* ============================================================
   SECURE NOTE
   ============================================================ */

.secure-note{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    margin-top:18px;
    margin-bottom:18px;

    color:#7B8191;

    font-size:0.88rem;
}

.secure-note i{

    color:#2B5CE6;
}

.note-pipe{

    color:#D1D5DB;
}

/* ============================================================
   FOOTER
   ============================================================ */

.card-footer-text{

    border-top:1px solid #E5E7EB;

    padding-top:16px;

    text-align:center;

    color:#7B8191;

    font-size:0.82rem;
}

.card-footer-text a{

    color:#2B5CE6;

    text-decoration:none;

    font-weight:600;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media(max-width:1400px){

    .title-section h1{

        font-size:3rem;
    }
}

@media(max-width:991px){

    body{

        overflow:auto;
    }

    .right-panel{

        padding:24px 16px;
    }

    .login-card{

        padding:30px 22px;
    }

    .welcome-heading{

        font-size:2rem;
    }
}

/* Hide browser default password reveal icon */

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none;
}

input[type="password"]::-webkit-credentials-auto-fill-button {
    visibility: hidden;
    display: none !important;
    pointer-events: none;
}

input[type="password"]::-webkit-textfield-decoration-container {
    display: none;
}