html {
    height: 100%;
    width: 100%;
    font-family: "Roboto", sans-serif;
    background-color: rgba(29, 35, 42, 1);
    color: white;
}

body {
    height: 99%;
    width: 99%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-items: center;
}

#main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: min-content;
    height: min-content;
    background-color: rgba(39, 45, 52, 1);
    padding: 30px;
    border-radius: 20px;
}

.container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 20px;
}

label {
    background: rgba(49, 55, 62, 1);
    padding: 9px;
    width: 120px;
    border: rgba(29, 35, 42, 1) solid 2px;
}

#password {
    padding: 10px;
    background-color: rgba(39, 45, 52, 1);
    border: rgba(29, 35, 42, 1) solid 2px;
    color: white;
}

#username {
    padding: 10px;
    background-color: rgba(39, 45, 52, 1);
    border: rgba(29, 35, 42, 1) solid 2px;
    color: white;
}

.button {
    background-color: (100, 145, 112, 1);
    border-radius: 0px;
}