*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Jura", sans-serif;
    scroll-behavior: auto;
}

body {
    background-color: gray;
}

.container {
    position: absolute;
    background-color: white;
    border: 5px black solid;
    border-radius: 10px;
    width: 500px;
    height: 500px;
    top: 200px;
    bottom: 200px;
    left: 550px;
    align-content: center;
}

.container h2 {
    position: relative;
    text-align: center;
    font-size: 40px;
    padding: 10px;
}

.form {
    position: relative;
    text-align: center;
    font-size: 20px;
}

.email-bar, .password-bar, .username-bar {
    height: 30px;
    width: 300px;
    font-size: 20px;
    border: none;
    border-bottom: 2px black solid;
}

.btn {
    font-size: 20px;
}