#loginRegisterSpace{
    background-color: white;
    height:100%;
    width: 100%;
    text-align: center;
}

#loginRegisterMenu{
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 50%;
    transform: translate(-50%);
    z-index: 2;
    position: relative;
    max-width: 1000px;
    margin-bottom: -1px;
}

#contentLoginRegister{
    background-color: white;
    height: 500px;
    width: 100%;
    max-width: 750px;
    left: 50%;
    transform: translate(-50%);
    display: block;
    text-align: center;
    padding-top: 100px;
    padding-left: 160px;
    padding-right: 160px;
    padding-bottom: 100px;
    border-style: solid;
    border-radius: 30px;
    border-color: grey;
    border-width: 1px;
    z-index: 1;
    margin-left: 50%;
}

@media screen and (max-width: 500px) {
    #contentLoginRegister{
        padding-top: 20px;
        padding-left: 40px;
        padding-right: 40px;
        padding-bottom: 20px;
    }
}
    
@media screen and (min-width: 500px) {
    #contentLoginRegister{
        padding-top: 40px;
        padding-left: 40px;
        padding-right: 40px;
        padding-bottom: 40px;
    }
}

.stepLoginRegister{
    height: 50px;
    display: flex; 
    align-items: center;
    justify-content: center;    
    border-left: 1px solid gray;
    border-top: 1px solid gray;
    border-bottom: 1px solid transparent;
}

@media screen and (max-width: 680px) {
    .stepLoginRegister{
        width: auto;
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media screen and (min-width: 680px) {
    .stepLoginRegister{
        width: 200px;
        padding: 0px;
    }
}

@media screen and (max-width: 500px) {
    .stepLoginRegister{
        padding-right: 10px;
        padding-left: 10px;
        height: 40px;
    }
}

@media screen and (min-width: 500px) and (max-width: 680px){
    .stepLoginRegister{
        padding-right: 20px;
        padding-left: 20px;
        height: 50px;
    }
}   

.labelLoginRegister{
    color: gray;
    font-family: jost;
    font-weight: 400;
    font-size: 22px;
    margin: auto;
}

#login{
    border-left: 1px solid gray;
    border-top: 1px solid gray;
    border-top-left-radius: 10px;
    border-bottom: 1px solid white;
}

#register{
    border-left: 1px solid gray;
    border-right: 1px solid gray;
    border-top: 1px solid gray;
    border-top-right-radius: 10px;
    border-bottom: 1px solid transparent;
}

#passwordReset{
    border-right: 1px solid gray;
    border-left: 1px solid gray;
    border-top: 1px solid gray;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom: 1px solid white;
}

.loginRegisterBt{
    padding-left: 20px;
    padding-right: 20px;
    position: absolute;
    bottom: 80px;
    left: calc(50% - 220px / 2);
    font: jost;
    font-size: 20px;
    font-weight: 400;
    border-radius: 10px;
    background-color: gray;
    cursor: pointer;
    color: white;
    width: 220px;
    height: 40px;
    border-radius: 12px;
}

.loginDiv{
    padding: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100px;
}