.login-dialog-whole-screen { display: none; position: fixed; width: 100%; height: 100%; top: 0; left: 0; } .login-dialog { width: 100%; height: 100%; top: 0; left: 0; background-color: rgba(0, 0, 0, 0.4); display: flex; align-items: center; justify-content: center; } .login-dialog-title { font-size: 24px; font-weight: bold; margin: 0; margin-bottom: 15px; } .login-dialog-username, .login-dialog-password { border: solid 1px white; width: 180px; margin-bottom: 15px; } .login-dialog-buttons { margin-bottom: 15px; display: flex; flex-direction: row; justify-content: center; } .login-dialog-submit { width: 120px; } .login-dialog-submit:first-child { margin-right: 15px; } .login-dialog-form { background-color: #181818; border: solid 1px white; padding: 15px; width: 500px; max-width: 100%; display: flex; flex-direction: column; align-items: center; height: 100%; } .login-dialog-explanation { color: white; text-align: center; } .auth-button { display: none; } @media only screen and (min-width: 648px) { .login-dialog-form { height: auto; } }