body{
    margin:0;
    background:#050505;
    color:white;
    font-family:Arial,sans-serif;
}

/* LOGIN */

.loginWrapper{
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;
}

.loginBox{
    width:340px;
    padding:30px;
    background:#111;
    border:1px solid red;
    border-radius:20px;
    box-shadow:0 0 25px rgba(255,0,0,0.4);
    text-align:center;
}

.loginBox h1{
    margin-bottom:25px;
}

.loginBox input{
    width:100%;
    margin-bottom:14px;
    padding:14px;
    box-sizing:border-box;
    border:none;
    border-radius:10px;
    background:#1b1b1b;
    color:white;
    outline:none;
    font-size:15px;
}

.loginBox button{
    width:100%;
    margin-top:10px;
}

/* BUTTONS */

button{
    background:red;
    border:none;
    color:white;
    padding:12px;
    border-radius:10px;
    cursor:pointer;
    font-weight:bold;
    transition:0.2s;
}

button:hover{
    opacity:0.85;
}

/* TOPBAR */

.topbar{
    height:70px