.loginForm{
    height:70vh;
    width: 45vw;
    min-width: 300px;
    border-radius: 10px;
    background-color: #e4b69d;
    margin: auto;
    margin-top: 15vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px #000;
}

.loginInput{
    width: 90%;
    border:none;
    margin-top: 1vh;
    height: 3vh;
    min-height: 40px;
    background-color: #e4b69d;
    border-bottom: 1px solid #391D0E;;
}

.loginInput::placeholder{
    color : #391D0E;
}

.loginButton{
    color: #391D0E; 
    padding:1vh;
    margin-top: 4vh;
    border-radius: 5px;
    font-size: calc(20px + 1vh);
    font-weight: 600;
    border:none;
    width: 65%;
    background-color: #9b694d;
}

.loginButton:hover{
    transition-duration: 0.4s;
    filter: brightness(80%);
}

.disconnectButton{
    background-color: red;
    border: 0 transparent;
}

body{
    background-color: #9b694d;
}

.logo{
    width: 30%;
    height: auto;
}