*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins',sans-serif;

    background:url('img/hero.jpg');
    background-size:cover;
    background-position:center;

    height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    position:relative;
}

body::before{

    content:'';

    position:absolute;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.85);
}

.login-container{

    position:relative;

    z-index:2;
}

.login-box{

    width:420px;

    background:#111;

    border:1px solid rgba(255,0,0,.3);

    border-radius:20px;

    padding:45px;

    text-align:center;

    box-shadow:0 0 30px rgba(255,0,0,.15);
}

.logo{

    width:110px;

    margin-bottom:20px;
}

.login-box h1{

    color:white;

    margin-bottom:30px;
}

.login-box input{

    width:100%;

    padding:15px;

    margin-bottom:15px;

    border:1px solid #333;

    background:#1b1b1b;

    color:white;

    border-radius:8px;
}

.login-box button{

    width:100%;

    padding:15px;

    border:none;

    background:#ff0000;

    color:white;

    font-weight:700;

    border-radius:8px;

    cursor:pointer;

    transition:.3s;
}

.login-box button:hover{

    background:#cc0000;
}