/* ==========================================
   Google Fonts
========================================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   CSS Variables
========================================== */
:root {
    --primary:      #F0532D;
    --primary-dark: #d4451f;
    --primary-light:#fff2ef;
    --secondary:    #14435A;
    --navy:         #0e2d3d;
    --navy-dark:    #091f2b;
    --navy-light:   #1a3f54;
    --white:        #ffffff;
    --bg-slate:     #f4f6f8;
    --bg-teal:      #f0f7f9;
    --text-dark:    #1a1a2e;
    --text-muted:   #6b7280;
    --text-light:   #94a3b8;
    --border:       #e4edf1;
    --border-navy:  #1e4a63;
    --shadow-sm:    0 2px 12px rgba(14, 45, 61, 0.10);
    --shadow-md:    0 4px 24px rgba(14, 45, 61, 0.15);
    --radius-sm:    10px;
    --radius-md:    14px;
    --radius-lg:    20px;
    --radius-pill:  50px;
    --font: 'Noto Sans Bengali', sans-serif;
}

/* ==========================================
   Reset
========================================== */
*, *::before, *::after {
    margin: 0; padding: 0;
    box-sizing: border-box;    
}
body {
  font-family: var(--font);
}
img { max-width: 100%; display: block; }
ul  { list-style: none; margin: 0px !important; padding: 0px !important;}
a   { text-decoration: none; }
h1, h2, h3, h4, h5, h6 { color: var(--text-dark); margin: 0; padding: 0; }
p { margin: 0; padding: 0; }

/* ==========================================
   Header
========================================== */
.header_height { height: 80px; }
 
.header_area {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    padding: 12px 0;
    background: transparent;
    transition: background 0.3s, box-shadow 0.3s;
    z-index: 9999;
}
.header_area.sticky_header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}
 
.logo img { max-height: 56px; transition: filter 0.3s; }
 
.header_auth {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}
.header_auth__child { display: flex; gap: 12px; }
 
.header_join_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 8px;
    background: var(--primary);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    border: 2px solid transparent;
    box-shadow: 0 4px 18px rgba(240, 83, 45, 0.45);
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.header_join_btn:hover {
    background: #d4431f;
    color: var(--white);
    box-shadow: 0 6px 24px rgba(240, 83, 45, 0.6);
    transform: translateY(-2px);
}
.header_join_btn i { font-size: 16px; }

/*
==========================================
    Auth Area css
==========================================
*/
 

/* ─── WRAPPER ─────────────────────────────────────────── */
.auth_wrapper_area {
    min-height: calc(100vh - 132px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    background: var(--bg-slate);
}
 
.auth_wrapper {
    width: 100%;
    max-width: 1060px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    min-height: 560px;
}
 
.auth_wrapper_content {
    display: flex;
    width: 100%;
}
 
/* ─── LEFT PANEL ──────────────────────────────────────── */
.auth_left_panel {
    width: 42%;
    background: var(--secondary);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
 
.auth_left_panel::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 260px; height: 260px;
    background: rgba(255,255,255,0.07);
    border-radius: 50%;
}
 
.auth_left_panel::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}
 
.auth_panel_brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}
 
.auth_panel_brand_icon {
    width: 40px;
    height: 36px;
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--white);
    font-weight: 800;
    backdrop-filter: blur(4px);
    text-align: center;
}
 
.auth_panel_brand_name {
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.2px;
}
 
.auth_panel_headline {
    color: var(--white);
    font-size: 26px;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}
 
.auth_panel_sub {
    color: rgba(255,255,255,0.80);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}
 
.auth_panel_features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}
 
.auth_panel_features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.92);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
}
 
.auth_panel_features li .feat_icon {
    width: 20px; height: 20px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
 
.auth_panel_features li .feat_icon svg {
    width: 11px; height: 11px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
 
/* ─── RIGHT FORM AREA ─────────────────────────────────── */
.auth_area {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 48px;
}
 
/* ─── HEADER ──────────────────────────────────────────── */
.auth_header {
    margin-bottom: 28px;
}
 
.auth_logo_row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}
 
.auth_logo_badge {
    width: 36px; height: 36px;
    background: var(--primary);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: var(--white);
}
 
.auth_logo_name {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}
 
.auth_header h5 {
    font-size: 23px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.3;
}
 
.auth_header p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}
 
/* ─── BODY / FORM ─────────────────────────────────────── */
.auth_body { width: 100%; }
 
.auth_form { width: 100%; }
 
.auth_group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
 
.auth_group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}
 
.auth_group input {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
 
.auth_group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(240, 83, 45, 0.10);
}
 
.auth_group input::placeholder {
    color: var(--text-light);
    font-size: 13.5px;
}
 
/* two-column password row */
.auth_group_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 16px;
}
 
.req_star { color: var(--primary); margin-left: 2px; }
 
/* ─── ERROR / SUCCESS MESSAGES ────────────────────────── */
.error__message {
    display: block;
    font-size: 12.5px;
    color: #e03e2d;
    margin-bottom: 12px;
    background: #fff0ee;
    border-left: 3px solid #e03e2d;
    padding: 8px 12px;
    border-radius: 6px;
}
 
/* ─── OTP SECTION ─────────────────────────────────────── */
.auth_otp_info {
    text-align: center;
    margin-bottom: 20px;
}
 
.auth_otp_info p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 6px;
}
 
.auth_otp_info strong {
    color: var(--text-dark);
    font-weight: 700;
}
 
.auth_otp_timer {
    text-align: center;
    padding: 14px 0 6px;
}
 
.auth_otp_timer_num {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
}
 
.auth_otp_timer_label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
    display: block;
}
 
.auth_form_resend_button {
    text-align: center;
    margin-bottom: 16px;
}
 
/* ─── BUTTON ──────────────────────────────────────────── */
.auth_btn {
    margin-top: 4px;
}
 
.auth_btn_link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s, transform 0.12s, box-shadow 0.18s;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(240, 83, 45, 0.30);
}
 
.auth_btn_link:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(240, 83, 45, 0.38);
}
 
.auth_btn_link:active {
    transform: translateY(0);
}
 
.auth_btn_link:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}
 
/* spinner (bootstrap compat) */
.spinner-border {
    display: inline-block;
    width: 20px; height: 20px;
    border: 2.5px solid rgba(255,255,255,0.35);
    border-right-color: #fff;
    border-radius: 50%;
    animation: spin 0.65s linear infinite;
}
 
@keyframes spin { to { transform: rotate(360deg); } }
 
/* ─── FOOTER ──────────────────────────────────────────── */
.auth_footer {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
 
.auth_forgot {
    text-align: center;
}
 
.auth_forgot_link {
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.15s;
}
 
.auth_forgot_link:hover { color: var(--primary); }
 
.auth_register {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
 
.auth_register p {
    font-size: 16px;
    color: var(--text-muted);
}
 
.auth_register_link {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.15s;
}
 
.auth_register_link:hover { opacity: 0.8; text-decoration: underline; }
 
.auth_divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0;
}
 
.auth_divider hr {
    flex: 1;
    border: none;
    border-top: 1px solid var(--border);
}
 
.auth_divider span {
    font-size: 12px;
    color: var(--text-light);
    white-space: nowrap;
}
 

/* ==========================================
   Footer
========================================== */
.footer_bottom {
    padding: 15px 0;
    background: var(--navy-dark);
    border-top: 1px solid var(--border-navy);
}
.footer_copyright p         { font-size: 14px; color: #6a9ab0; }
.footer_social_media        { text-align: right; }
.footer_social_media ul     { display: flex; justify-content: flex-end; gap: 12px; margin-bottom: 0;}
.footer_social_media_link   { font-size: 14px; color: #6a9ab0; font-weight: 500; }
.footer_social_media_link:hover { color: var(--primary); }
.footer_social_media li {
  font-size: 14px;
  color: #6a9ab0;
}



/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 992px) {
    .auth_wrapper_content {
        flex-direction: column;
    }
}
@media (max-width: 820px) {
    .auth_wrapper {
        flex-direction: column;
        max-width: 480px;
    }
 
    .auth_left_panel {
        width: 100%;
        padding: 32px 28px;
    }
 
    .auth_panel_features { display: none; }
 
    .auth_panel_headline { font-size: 20px; }
 
    .auth_area {
        padding: 32px 28px;
    }
    .header_join_btn {
        padding: 8px 20px;
        font-size: 14px;
        font-weight: 600;
    }
    .header_auth__child {
       gap: 8px;
    }
    .header_height {
        height: 60px;
    }
    .header_area {
        padding: 10px 0;
    }
        .footer_copyright p {
        font-size: 11px;
        text-transform: uppercase;
    }
    .footer_social_media li {
        font-size: 11px;
        text-transform: uppercase;
    }
    .footer_social_media_link {
        font-size: 11px;
        text-transform: uppercase;
    }
    .footer_social_media ul {
        justify-content: center;
        padding-left: 0;
    }
    .footer_copyright {
        text-align: center;
        margin-bottom: 6px;
    }
}
 
@media (max-width: 480px) {
    .auth_wrapper_area { padding: 0; }
 
    .auth_wrapper {
        border-radius: 0;
        min-height: 100vh;
        box-shadow: none;
    }
 
    .auth_left_panel { padding: 24px 20px; }
 
    .auth_area { padding: 24px 20px; }
 
    .auth_group_row {
        grid-template-columns: 1fr;
    }
}