*{
    font-family: exo-regular, sans-serif;
    font-size: 18px;
    margin: 0;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    background-image: url("images/Grey-background-widescreen.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.header{
    font-size: 36px;
    color: #00ed33;
    text-shadow: #030303ce 2px 2px 3px;
}

.formContainer{
    /*position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -50;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
    background-color: #f2f2f2;
    box-shadow: #222222 3px 3px 3px;
    border-radius: 20px;
}

.loginForm{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.formInput{
    padding: 5px;
    margin: 10px;
    width: 300px;
    border: none;
    border-radius: 5px;
    box-shadow: #808080 2px 2px 3px;
}

.formInputSubmit{
    padding: 10px;
    margin-top: 10px;
    background-color: #00ed33;
    box-shadow: #808080 2px 2px 3px;
    color: #f2f2f2;
    text-shadow: #050505 1px 1px 2px;
    width: 100px;
    border: none;
    border-radius: 5px;
}

.formInputSubmit:hover{
    background-color: #00c42a;
    cursor: pointer;
}

.formFileInput{
    display: flex;
    flex-direction: column;
    align-items: left;
    margin: 10px 0px 10px 30px;
}

.button{
    padding: 10px;
    border-radius: 3px;
    background-color: #00ed33;
    color: #f2f2f2;
    text-shadow: #030303ce 1px 1px 2px;
    margin: 10px;
    text-decoration: none;
    box-shadow: #030303ce 3px 3px 4px;
}

.logout{
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px;
    border-radius: 3px;
    background-color: #f2f2f2;
    box-shadow: #030303ce 3px 3px 4px;
}

.logout a{
    color: #00ed33;
    text-shadow: #030303ce 1px 1px 2px;
    text-decoration: none;
}