/* ============================================================
   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;
}

.login-wrapper{
    min-height:100vh;
    background:#f5f7fb;
}

.right-panel{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px;
}

.forgot-card{
    width:100%;
    max-width:520px;
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.card-top{
    text-align:center;
    margin-bottom:30px;
}

.icon-circle{
    width:70px;
    height:70px;
    margin:auto;
    border-radius:50%;
    background:#eaf1ff;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
}

.card-top h2{
    margin-top:20px;
    font-size:32px;
    font-weight:700;
    color:#0f172a;
}

.card-top p{
    color:#64748b;
    margin-top:10px;
    line-height:1.6;
}

.title-bar{
    width:60px;
    height:4px;
    background:#2563eb;
    margin:18px auto 0;
    border-radius:30px;
}

.field-group{
    margin-bottom:20px;
}

.field-group label{
    display:block;
    font-weight:600;
    margin-bottom:8px;
}

.input-wrap{
    position:relative;
    display:flex;
    align-items:center;
}

.input-icon{
    position:absolute;
    left:15px;
    top:50%;
    transform:translateY(-50%);
    color:#64748b;
    z-index:2;
    pointer-events:none;
}

.custom-input{
    width:100%;
    height:50px;
    border:1px solid #dbe4ee;
    border-radius:8px;
    padding-left:45px;
    outline:none;
}

.btn-primary-custom{
    width:100%;
    height:52px;
    border:none;
    border-radius:8px;
    background:#2563eb;
    color:#fff;
    font-weight:600;
    margin-top:10px;
}

.divider{
    text-align:center;
    margin:25px 0;
    color:#94a3b8;
    position:relative;
}

.divider:before,
.divider:after{
    content:'';
    position:absolute;
    width:40%;
    height:1px;
    background:#e5e7eb;
    top:50%;
}

.divider:before{
    left:0;
}

.divider:after{
    right:0;
}

.btn-back{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    height:52px;
    border:1px solid #2563eb;
    color:#2563eb;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.btn-back:hover{
    background:#2563eb;
    color:#fff;
}

.secure-note{
    margin-top:25px;
    text-align:center;
    color:#64748b;
    font-size:13px;
}

.card-footer-text{
    margin-top:25px;
    text-align:center;
    color:#64748b;
    font-size:13px;
}

.card-footer-text a{
    color:#2563eb;
    text-decoration:none;
}

.alert-success,
.alert-danger{
    width:100%;
    padding:14px 16px;
    border-radius:8px;
    margin-bottom:20px;
    font-size:14px;
    text-align:center;
}

.alert-success{
    background:#dcfce7;
    border:1px solid #bbf7d0;
    color:#15803d;
}

.alert-danger{
    background:#fee2e2;
    border:1px solid #fecaca;
    color:#dc2626;
}