*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter',sans-serif;
}

body{

    background:#f4f6f9;
    overflow:hidden;

}

.container{

    width:100%;
    height:100vh;

    display:flex;

}

.left-panel{

    width:65%;
    position:relative;

    background:url('../img/login-bg.png');

    background-size:cover;
    background-position:center;

}

.overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        rgba(139,0,0,.82),
        rgba(80,0,0,.90)
    );

}

.campus-content{

    position:absolute;

    left:70px;
    bottom:70px;

    color:white;

    z-index:2;

    max-width:550px;

}

.logo{

    width:120px;

    margin-bottom:25px;

}

.campus-content h1{

    font-size:48px;
    font-weight:800;

}

.campus-content h2{

    color:#FFC107;

    font-size:44px;

    margin-bottom:25px;

}

.campus-content p{

    font-size:20px;

    line-height:34px;

}

.right-panel{

    width:35%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(
    180deg,
    #f9fafc,
    #eef2f8
    );

}

.login-card{

    width:470px;

    background:white;

    border-radius:24px;

    padding:55px;

    box-shadow:0 20px 60px rgba(0,0,0,.15);

    animation:loginFade .7s ease;

}

.logo-login{

    width:110px;

    display:block;

    margin:auto;
    margin-bottom:20px;

}

.login-card h3{

    text-align:center;

    font-size:28px;

}

.login-card span{

    display:block;

    text-align:center;

    color:#777;

    margin-bottom:35px;

}

.input-group{

    background:white;

    border-color:#8B0000;

    box-shadow:0 0 0 4px rgba(139,0,0,.10);

    display:flex;
    align-items:center;

    padding:15px 18px;

    margin-bottom:18px;

    border:1px solid rgba(255,255,255,.25);

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    border-radius:14px;

    transition:.3s;

}

.input-group:hover{

    border-color:#FFC107;

}

.input-group:focus-within{

    border-color:#FFC107;

    box-shadow:0 0 0 3px rgba(255,193,7,.15);

}

.input-group i{

    color:#8B0000;

    margin-right:12px;

}

.input-group input{

    width:100%;

    border:none;
    outline:none;

    background:transparent;
    color:#333;

    font-size:16px;

}

.input-group input::placeholder{

    color:#888;

}

button{

    width:100%;

    height:55px;

    border:none;

    border-radius:12px;

    background:#8B0000;

    color:white;

    font-size:17px;

    font-weight:bold;

    cursor:pointer;

    transition:.35s;

}

button:hover{

    background:#FFC107;

    color:#222;

    transform:translateY(-2px);

    box-shadow:0 12px 30px rgba(139,0,0,.30);

}

.footer{

    margin-top:30px;

    text-align:center;

    color:#999;

    font-size:14px;

}

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

@media (max-width:768px){

body{
    overflow:auto;
}

.container{
    flex-direction:column;
}

.left-panel{

    width:100%;
    height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

}

.right-panel{

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    background:transparent;

    display:flex;
    justify-content:center;
    align-items:center;

}

.campus-content{

    display:none;

}

.login-card{

    width:90%;
    max-width:400px;

    padding:35px 25px;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(15px);

}

.logo-login{

    width:80px;

}

}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus{

    -webkit-box-shadow:0 0 0px 1000px transparent inset !important;

    -webkit-text-fill-color:#333 !important;

    transition:background-color 9999s ease-in-out 0s;

}

.toggle-password{

    cursor:pointer;

    color:#888;

    transition:.3s;

}

.toggle-password:hover{

    color:#8B0000;

}

.remember{

    margin:15px 0 25px;

    color:#666;

    font-size:14px;

}

.remember input{

    margin-right:8px;

}

@keyframes loginFade{

from{

opacity:0;

transform:translateY(30px);

}

to{

opacity:1;

transform:translateY(0);

}

}

