/*=========================================
    LOGIN PAGE
=========================================*/

body{
    background:#050505;
    color:#fff;
    font-family:'Segoe UI',sans-serif;
}

/*========================
LEFT PANEL
========================*/

.login-left{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:100vh;

    background:url("../images/logo.jpg") center center;

    background-size:cover;

    overflow:hidden;

}

.login-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.75);

    backdrop-filter:blur(4px);

}

.login-content{

    position:relative;

    z-index:2;

    width:85%;

}

.login-logo{

    width:250px;

    margin-bottom:30px;

}

.login-content h1{

    font-size:3rem;

    line-height:1.2;

    margin-bottom:25px;

}

.login-content p{

    color:#c7c7c7;

    font-size:1.1rem;

}

/*========================
RIGHT SIDE
========================*/

.login-right{

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:100vh;

    background:#0d0d0d;

    padding:50px 20px;

}

.login-card{

    width:100%;

    max-width:500px;

    padding:45px;

    border-radius:25px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,193,7,.25);

    backdrop-filter:blur(25px);

    box-shadow:0 15px 50px rgba(0,0,0,.5);

}

/*========================
FORM
========================*/

.form-label{

    font-weight:600;

    color:#fff;

}

.input-group{

    border-radius:15px;

    overflow:hidden;

}

.input-group-text{

    background:#181818;

    color:#ffc107;

    border:none;

}

.form-control{

    background:#181818;

    color:#fff;

    border:none;

    padding:15px;

}

.form-control:focus{

    background:#181818;

    color:#fff;

    box-shadow:none;

}

.form-control::placeholder{

    color:#8d8d8d;

}

.btn-outline-secondary{

    border:none;

    background:#181818;

    color:#ffc107;

}

.btn-outline-secondary:hover{

    background:#181818;

    color:#fff;

}

/*========================
BUTTONS
========================*/

.btn-warning{

    border-radius:15px;

    padding:14px;

    font-weight:700;

    transition:.3s;

}

.btn-warning:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 25px rgba(255,193,7,.35);

}

/*========================
GLASS BOXES
========================*/

.glass-box{

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,193,7,.15);

    border-radius:18px;

    text-align:center;

    padding:20px;

}

.glass-box h3{

    color:#ffc107;

    font-weight:700;

}

.glass-box small{

    color:#ddd;

}

/*========================
LINKS
========================*/

a{

    transition:.3s;

}

a:hover{

    color:#ffd54f !important;

}

/*========================
ANIMATION
========================*/

.login-card{

    animation:fadeIn .8s ease;

}

@keyframes fadeIn{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*========================
MOBILE
========================*/

@media(max-width:991px){

    .login-right{

        padding:30px 15px;

    }

    .login-card{

        padding:30px;

    }

}

@media(max-width:576px){

    .login-card{

        padding:25px;

        border-radius:18px;

    }

    .login-card h2{

        font-size:2rem;

    }

    .btn-lg{

        font-size:16px;

    }

}