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

#userAreaMenu{
    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;
}

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

@media screen and (max-width: 375px) {
    #contentUserArea{
        min-height: 400px;
    }
}

@media screen and (min-width: 375px) {
    #contentUserArea{
        min-height: 500px;
    }
}


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

@media screen and (max-width: 375px) {
    #contentUserArea{
        padding-top: 20px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 20px;
    }
}

.stepUserArea{
    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) {
    .stepUserArea{
        width: auto;
        padding-right: 20px;
        padding-left: 20px;
    }
}

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

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

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

.labelUserArea{
    color: gray;
    font-family: jost;
    font-weight: 400;
    margin: auto;
}

@media screen and (max-width: 500px){
    .labelUserArea{
        font-size: 18px;
    }
}

@media screen and (min-width: 500px) {
    .labelUserArea{
        font-size: 22px;
    }
}

@media screen and (max-width: 375px) {
    .labelUserArea{
        font-size: 14px;
    }
}

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

#comments{
    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;
}

.lastStep{
    border-right: 1px solid gray;
    border-top-right-radius: 10px;
}