:root{
    --width-login:30%;
}

.Login{
    height: 100vh;
    margin: 0 auto;
    width: var(--width-login);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.Login>h1{
    color: var(--color-title-dark);
    margin-bottom: 100px;
    font-size: 50px;
}

.Login>form{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.Login>form>label{
    font-weight: 100;
    color: var(--color-title-dark);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.Login>form>label>input{
    width: 80%;
    height: 40px;
    padding-left: 10px;
    font-size: 14px;
    background-color: inherit;
    border: 1px solid var(--bg-border-dark);
    color: var(--color-title-dark);
}

.Login>form>label>input:focus{
    outline: none;
}

.Login>form>button{
    width:100%;
    height: 40px;
    margin-top: 20px;
    border: none;
    color: var(--color-title-dark);
    font-size: 14px;
    font-weight: bold;
    background-color: var(--color-principal-dark);
    cursor: pointer;
}

.Login>form>button:hover,.Login>form>button:focus{
    background-color: var(--bg-hover-button-dark);
}