/* ==========================================
   Aspirian Online MCQs Test System
   Developed By KhudaYar Labs
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#f4f6f9;
    font-family:Arial,Helvetica,sans-serif;
}

/* ==========================
   Login Container
========================== */

.login-box{
    max-width:550px;
    margin:40px auto;
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

/* ==========================
   Logo Section
========================== */

.logo{
    text-align:center;
    margin-bottom:20px;
}

.logo img{
    width:95px;
    height:auto;
    margin-bottom:15px;
}

/* ==========================
   Student Login Heading
========================== */

.student-title{
    font-size:40px;
    font-weight:700;
    color:#0d47a1;
    margin-bottom:10px;
    line-height:1.2;
}

/* ==========================
   School Title
========================== */

.school-title{
    font-size:42px;
    font-weight:800;
    color:#1f2937;
    line-height:1.2;
    margin-bottom:8px;
}

/* ==========================
   School Name / Location
========================== */

.school-location{
    font-size:22px;
    font-weight:500;
    color:#6c757d;
    margin-bottom:12px;
    line-height:1.4;
}

/* ==========================
   Subtitle
========================== */

.subtitle{
    font-size:18px;
    color:#6c757d;
    margin-bottom:30px;
}

/* ==========================
   Form
========================== */

.form-group{
    margin-bottom:20px;
}

.form-label{
    display:block;
    font-size:18px;
    font-weight:600;
    margin-bottom:8px;
}

.form-control{
    width:100%;
    height:55px;
    padding:12px;
    font-size:18px;
    border:1px solid #ced4da;
    border-radius:8px;
}

.form-control:focus{
    outline:none;
    border-color:#0d6efd;
    box-shadow:0 0 0 .2rem rgba(13,110,253,.20);
}

/* ==========================
   Buttons
========================== */

.btn-primary{
    width:100%;
    height:55px;
    background:#0d6efd;
    color:#fff;
    border:none;
    border-radius:8px;
    font-size:22px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.btn-primary:hover{
    background:#0b5ed7;
}

/* ==========================
   Error Message
========================== */

.error{
    background:#ffe5e5;
    color:#c40000;
    padding:12px;
    border-radius:6px;
    margin-bottom:20px;
}

/* ==========================
   Footer
========================== */

.footer-text{
    text-align:center;
    font-size:18px;
    margin-top:25px;
    color:#666;
}

.footer-text a{
    color:#0d6efd;
    font-weight:bold;
    text-decoration:none;
}

.footer-text a:hover{
    text-decoration:underline;
}

/* ==========================
   Mobile Responsive
========================== */

@media(max-width:768px){

.login-box{
    margin:20px;
    padding:25px;
}

.logo img{
    width:80px;
}

.student-title{
    font-size:32px;
}

.school-title{
    font-size:34px;
}

.school-location{
    font-size:18px;
}

.subtitle{
    font-size:16px;
}

.form-control{
    height:50px;
    font-size:16px;
}

.btn-primary{
    height:50px;
    font-size:18px;
}

.footer-text{
    font-size:16px;
}

}