* {
    box-sizing:border-box;
}

body{
   
    background: linear-gradient(to left, rgba(255,0,0,0), rgb(25, 3, 76)), url('panel-bgr.jpg');
    background-position: center;    
    background-size: cover;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.5em;
    color: rgb(231, 238, 255);
    text-align: center;
}

.container{
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box{
    
    margin: auto;
    background-color: rgba(8, 8, 37, 0.67);
    padding: 1.5em;
    border-radius: 0.3em;
    box-shadow: 0 1px 10px 10px rgba(255, 255, 255, 0.54);
    
}

input{
    padding: .3em;
    margin: .3em auto;
    font-size: 1em;
    font-family: 'Courier New', Courier, monospace;
    border-radius: .3em;
}
