/* ==========================================
   JLServers Login
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{

    --bg:#080808;
    --card:#111111;

    --gold:#d4af37;

    --red:#b30000;
    --red-hover:#d40000;

    --border:#2a2a2a;

    --text:#ffffff;
    --gray:#9c9c9c;
}

*{

    margin:0;
    padding:0;

    box-sizing:border-box;
}

html,
body{

    width:100%;
    height:100%;
}

body{

    font-family:'Poppins',sans-serif;

    background:
    radial-gradient(
    circle at center,
    rgba(212,175,55,.08),
    transparent 50%
    ),
    #080808;

    color:#fff;
}

/* ==========================================
   LOGIN CONTAINER
========================================== */

.login-page{

    width:100%;

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:20px;
}

/* ==========================================
   LOGIN BOX
========================================== */

.login-box{

    width:100%;

    max-width:500px;

    background:var(--card);

    border:1px solid var(--gold);

    border-radius:20px;

    padding:45px;

    box-shadow:
    0 0 40px rgba(212,175,55,.12);
}

/* ==========================================
   LOGO
========================================== */

.login-logo{

    text-align:center;

    margin-bottom:10px;

    font-size:50px;

    font-weight:800;

    color:var(--gold);
}

.login-subtitle{

    text-align:center;

    color:var(--gray);

    margin-bottom:35px;

    font-size:16px;
}

/* ==========================================
   INPUTS
========================================== */

.form-control{

    background:#0d0d0d !important;

    border:1px solid var(--border) !important;

    color:#fff !important;

    min-height:55px;

    border-radius:10px;

    margin-bottom:15px;
}

.form-control:focus{

    background:#0d0d0d !important;

    color:#fff !important;

    border-color:var(--gold) !important;

    box-shadow:none !important;
}

.form-control::placeholder{

    color:#666;
}

/* ==========================================
   BOTON LOGIN
========================================== */

.btn-login{

    width:100%;

    height:55px;

    border:none;

    border-radius:10px;

    background:var(--red);

    color:#fff;

    font-size:16px;

    font-weight:600;

    transition:.3s;
}

.btn-login:hover{

    background:var(--red-hover);
}

/* ==========================================
   LINKS
========================================== */

.login-links{

    text-align:center;

    margin-top:20px;
}

.login-links a{

    color:var(--gold);

    text-decoration:none;

    transition:.3s;
}

.login-links a:hover{

    opacity:.8;
}

/* ==========================================
   ALERTS
========================================== */

.alert{

    border:none;

    border-radius:10px;
}

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

@media(max-width:768px){

    .login-box{

        padding:30px 20px;
    }

    .login-logo{

        font-size:40px;
    }

}