body{
    background-color: var(--primary);
    display: flex;
    position: relative;
    flex-direction: column;
    margin: 0px;
}
p{
    color: var(--text);
    margin: 0;
    font-family: arial;
    font-size: medium;
    display: inline;
    text-align: center;
}
button{
    background-color: var(--button);
    border-color: var(--button);
    height: fit-content;
    width: fit-content;
    align-content: center;
    border-radius: 3px;
    padding: 5px;
    border-style: solid;
    margin-bottom: 10px;
}
button:hover{
    border-color: var(--button_hover);
}
button:last-child{
    margin-bottom: 0px;
}
.outerBox{
    background-color: var(--bg);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
}
.outerBox.login{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    flex-grow: 2;
}
.sideBar{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    padding: 3px;
    background-color: var(--primary);
}
.sideBarBlock{
    background-color: var(--primary);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 200px;
    height: fit-content;
    position: relative;
}
.sideBarBlock .textBlock{
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}
.sideBarBlock:not(:first-child){
    margin-top: 10px;
}
.sideBarBlock button{
    background-color: var(--primary);
}
.topBar{
    background-color: var(--primary);
    width: 100%;
    height: 50px;
}
.wrapper{
    display: flex;
    position: relative;
}
input{
    width: 250px;
    height: 25px;
    margin-bottom: 10px;
}
input:last-child{
    margin-bottom: 0px;
}
.buttonWrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
}
button.homeIcon{
    background-color: var(--primary);
    border-color: none;
    border: none;
    border-radius: 50%;
}
button.homeIcon:hover{
    background-color: var(--button);
}
button.homeIcon img{
    width: 32px;
    height: 32px;
}