@charset "UTF-8";

* {
    margin: 0px;
    padding: 0px;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: rgba(0, 0, 0, 0.956) ;
}

div#login {
    background-color: black;
    width: 70vw;
    height: 90vh;
    display: flex;
    text-align: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    border-radius: 15px;
    box-shadow: 0px 1px 10px blue;
    background-image: url(https://yt3.googleusercontent.com/ytc/AIdro_kR-DPKqI3oNXyEYX69BBTaRUAe6FI37dSXUL89zLCjag=s900-c-k-c0x00ffffff-no-rj);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: center center;
}

div#login h1 {
    text-align: center;
    padding-bottom: 100px;
    padding-top: 50px;
}

div#login input {
    margin-bottom: 15px;
    padding: 5px;
}

div#login button {
    padding: 5px;
    width: 80px;
    margin-left: 20px;
    margin-top: 15px;
}