/* ===================================================
   GOOGLE FONT
=================================================== */

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

/* ===================================================
   RESET
=================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ===================================================
   BODY
=================================================== */

body{

    font-family:'Noto Sans Bengali', sans-serif;

    background:#f1f5f9;

    color:#1e293b;
}

/* ===================================================
   HEADER
=================================================== */

.main-header{

    background:linear-gradient(135deg,#0f172a,#1d4ed8);

    padding:16px 40px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    position:sticky;

    top:0;

    z-index:1000;

    box-shadow:0 4px 20px rgba(0,0,0,0.12);
}

.logo-section{

    display:flex;

    align-items:center;

    gap:15px;
}

.logo-section img{

    width:55px;

    height:55px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid rgba(255,255,255,0.2);
}

.logo-text h2{

    color:white;

    font-size:24px;
}

.logo-text p{

    color:#cbd5e1;

    font-size:13px;
}

/* ===================================================
   MENU
=================================================== */

.main-menu{

    display:flex;

    gap:10px;

    flex-wrap:wrap;
}

.main-menu a{

    color:white;

    text-decoration:none;

    padding:10px 18px;

    border-radius:10px;

    transition:0.3s;

    font-size:15px;

    font-weight:500;
}

.main-menu a:hover{

    background:rgba(255,255,255,0.12);

    transform:translateY(-2px);
}

/* ===================================================
   AUTH
=================================================== */

.auth-container{

    width:100%;

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:30px 15px;

    background:linear-gradient(135deg,#0f172a,#2563eb);
}

.auth-card{

    width:100%;

    max-width:520px;

    background:white;

    border-radius:24px;

    padding:35px;

    box-shadow:0 15px 50px rgba(0,0,0,0.18);
}

/* ===================================================
   AUTH TOP
=================================================== */

.auth-top{

    text-align:center;

    margin-bottom:25px;
}

.auth-top img{

    width:90px;

    height:90px;

    border-radius:50%;

    border:5px solid #dbeafe;

    margin-bottom:15px;
}

.auth-top h1{

    font-size:30px;

    color:#0f172a;

    margin-bottom:5px;
}

.auth-top p{

    color:#64748b;
}

/* ===================================================
   FORM
=================================================== */

.form-group{

    margin-bottom:18px;
}

.form-group label{

    display:block;

    margin-bottom:8px;

    font-size:15px;

    color:#334155;

    font-weight:600;
}

/* ===================================================
   INPUT
=================================================== */

input,
select,
textarea{

    width:100%;

    padding:14px 16px;

    border:1px solid #dbe2ea;

    border-radius:14px;

    background:#f8fafc;

    font-size:16px;

    transition:0.3s;

    font-family:'Noto Sans Bengali', sans-serif;
}

input:focus,
select:focus,
textarea:focus{

    outline:none;

    border-color:#2563eb;

    background:white;

    box-shadow:0 0 0 4px rgba(37,99,235,0.12);
}

/* ===================================================
   FILE BOX
=================================================== */

.file-upload{

    border:2px dashed #bfdbfe;

    background:#eff6ff;

    padding:20px;

    border-radius:16px;

    text-align:center;
}

/* ===================================================
   BUTTON
=================================================== */

.main-btn{

    width:100%;

    border:none;

    padding:15px;

    border-radius:14px;

    background:linear-gradient(135deg,#2563eb,#1d4ed8);

    color:white;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    transition:0.3s;

    font-family:'Noto Sans Bengali', sans-serif;
}

.main-btn:hover{

    transform:translateY(-2px);

    box-shadow:0 10px 25px rgba(37,99,235,0.25);
}

/* ===================================================
   MESSAGE
=================================================== */

.msg{

    padding:14px;

    border-radius:12px;

    margin-bottom:18px;

    background:#dcfce7;

    color:#166534;
}

.error{

    background:#fee2e2;

    color:#b91c1c;
}

/* ===================================================
   FOOTER
=================================================== */

.auth-footer{

    margin-top:22px;

    text-align:center;

    color:#475569;
}

.auth-footer a{

    color:#2563eb;

    text-decoration:none;

    font-weight:700;
}

/* ===================================================
   DASHBOARD
=================================================== */

.page-wrapper{

    width:92%;

    max-width:1200px;

    margin:35px auto;
}

.dashboard-card{

    background:white;

    border-radius:24px;

    padding:35px;

    box-shadow:0 10px 30px rgba(15,23,42,0.08);
}

/* ===================================================
   PROFILE
=================================================== */

.profile-top{

    display:flex;

    align-items:center;

    gap:25px;

    flex-wrap:wrap;

    margin-bottom:30px;
}

.profile-top img{

    width:120px;

    height:120px;

    border-radius:50%;

    object-fit:cover;

    border:5px solid #dbeafe;
}

.profile-info h2{

    font-size:32px;

    margin-bottom:8px;
}

.profile-info p{

    color:#64748b;

    font-size:17px;
}

/* ===================================================
   QUICK MENU
=================================================== */

.quick-menu{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));

    gap:18px;

    margin-top:25px;
}

.quick-menu a{

    background:linear-gradient(135deg,#2563eb,#1d4ed8);

    color:white;

    text-decoration:none;

    padding:18px;

    border-radius:18px;

    font-size:18px;

    font-weight:600;

    transition:0.3s;
}

.quick-menu a:hover{

    transform:translateY(-4px);
}

/* ===================================================
   APPLICATION
=================================================== */

.paper{

    max-width:900px;

    margin:40px auto;

    background:white;

    padding:60px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,0.1);

    line-height:42px;

    font-size:20px;
}

/* ===================================================
   PRINT BUTTON
=================================================== */

.print-btn{

    position:fixed;

    top:25px;

    right:25px;

    background:#2563eb;

    color:white;

    border:none;

    padding:12px 20px;

    border-radius:10px;

    cursor:pointer;

    font-size:16px;
}

/* ===================================================
   FOOTER
=================================================== */

.main-footer{

    background:#0f172a;

    color:#cbd5e1;

    text-align:center;

    padding:28px 15px;

    margin-top:50px;
}

.main-footer h3{

    color:white;

    margin-bottom:10px;
}

/* ===================================================
   UTILITIES
=================================================== */

.hide{

    display:none;
}

/* ===================================================
   RESPONSIVE
=================================================== */

@media(max-width:768px){

    .main-header{

        padding:18px 20px;

        flex-direction:column;

        gap:18px;
    }

    .logo-text h2{

        font-size:19px;
    }

    .auth-card{

        padding:28px 22px;
    }

    .profile-top{

        flex-direction:column;

        text-align:center;
    }

    .paper{

        padding:30px 20px;

        font-size:18px;

        line-height:36px;
    }
}