* {
    margin: 0px;
    box-sizing: border-box;
    font-family: monospace
}

body {
    background-color: rgb(34, 34, 34);
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-self: center;
}

.box {
    position: relative;
    padding: 1rem;
    min-width: 40%;
    max-width: 90%;
    background-color: rgb(211, 211, 211);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-self: center;
    border-radius: 4px;
    box-shadow: 5px 5px 4px 2px rgba(17, 16, 16, 1);
}

.input-line {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: baseline;
}


.button {
    font-size: larger;
    width: 50%;
    padding: 5px;
    margin: auto;
}

.text-input {
    font-size: larger;
    line-height: 2.5rem;
    width: 100%;
}


.error {
    color: red;
}

.margin-top {
    margin-top: 2rem;
}

.success {
    color: green;
}

.logout-form {
    width: fit-content !important;
    background-color: transparent;
    display: inline-block;
    position: absolute;
    top: -1.25rem;
    right: -1.25rem;
}

.logout-form>button {
    background-color: transparent;
    border: none;
}

small {
    display: block;
    color: gray;
    margin-top: -2rem;
}

label {
    color: rgb(36, 35, 35);
    font-size: large;
    width: 25%;
}

h1 {
    margin-bottom: 1rem;
    color: rgb(209, 209, 209);
}

input {
    display: block;
    margin: 2rem;
    padding: 5px 10px;
}

form {
    width: 100%;
}

textarea {
    font-size: larger;
    margin: 2rem;
    padding: 5px 10px;
    width: 100%;
}

img {
    width: 2.5rem;
    height: 2.5rem;
    cursor: pointer;
}

.scrollable{
    overflow-y: auto;
}