/* ==========================================
   ECEM Online Examination Portal
   Version 7.0
   login.css (Part 1)
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{

    background:linear-gradient(135deg,#1565c0,#42a5f5);

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:30px;

}

.container{

    width:100%;

    max-width:500px;

}

.login-box{

    background:#ffffff;

    border-radius:15px;

    padding:35px;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

    animation:fadeIn .8s ease;

}

.logo{

    text-align:center;

    margin-bottom:30px;

}

.logo img{

    width:100px;

    height:100px;

    border-radius:50%;

    border:4px solid #1565c0;

    object-fit:cover;

}

.logo h1{

    margin-top:15px;

    color:#1565c0;

    font-size:28px;

}

.logo p{

    color:#666;

    margin-top:5px;

}

form h2{

    text-align:center;

    color:#0d47a1;

    margin-bottom:25px;

}

.input-group{

    margin-bottom:20px;

}

.input-group label{

    display:block;

    margin-bottom:8px;

    font-weight:bold;

    color:#333;

}

/* ==========================================
   Input Fields
========================================== */

input{

    width:100%;

    padding:14px;

    border:2px solid #dcdcdc;

    border-radius:8px;

    outline:none;

    font-size:16px;

    transition:.3s;

}

input:focus{

    border-color:#1565c0;

    box-shadow:0 0 10px rgba(21,101,192,.25);

}

/* ==========================================
   Login Button
========================================== */

.login-btn{

    width:100%;

    padding:15px;

    border:none;

    border-radius:8px;

    background:#1565c0;

    color:#fff;

    font-size:18px;

    cursor:pointer;

    transition:.3s;

    margin-top:10px;

}

.login-btn:hover{

    background:#0d47a1;

    transform:translateY(-2px);

}

.login-btn i{

    margin-right:8px;

}

/* ==========================================
   Extra Links
========================================== */

.extra-links{

    margin-top:20px;

    text-align:center;

}

.extra-links p{

    margin:10px 0;

    color:#555;

}

.extra-links a{

    color:#1565c0;

    text-decoration:none;

    font-weight:bold;

}

.extra-links a:hover{

    text-decoration:underline;

}

/* ==========================================
   Footer
========================================== */

.footer{

    margin-top:30px;

    text-align:center;

    color:#777;

    font-size:14px;

}

.footer p{

    margin:5px 0;

}

/* ==========================================
   Responsive Design
========================================== */

@media(max-width:768px){

.container{

    max-width:100%;

}

.login-box{

    padding:25px;

}

.logo img{

    width:80px;

    height:80px;

}

.logo h1{

    font-size:22px;

}

.login-btn{

    font-size:16px;

}

}

/* ==========================================
   Animation
========================================== */

@keyframes fadeIn{

from{

opacity:0;

transform:translateY(25px);

}

to{

opacity:1;

transform:translateY(0);

}

}