body{
    padding:0;
    margin: 0 auto;
    max-width: 1500px;
}
.no_user_screen{
    position: fixed;
    width: 100%;
    height:100%;
    background-color: rgb(195, 253, 212);
    display: flex;   
    max-width: calc(1500px - 2em);
    padding:1em;
    gap:5em;
}
.no_user_screen .right{
    width:30%;
    min-width:320px;
}
.no_user_screen .left{
    flex-grow: 1;
}
.auth:not(.second_step) .step, .register:not(.second_step) .step{
    display: none;
}
.user_dashboard{
    min-height: 100vh;
    background: #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.user_dashboard h1{
    margin: 0;
}
.buy_more{
    display: flex;
    gap:1em;
    margin-bottom:2em;
}
.buy_more a{
    height: 300px;
    display: block;
    border:1px solid;
    display: flex;
    align-items: center;
    justify-content: center;    
    padding: 1em;
}
.register_wrapp{
    display: none;
}

.register_wrapp form, .auth_wrapp form{
    display: flex;
    flex-direction: column;
    gap:0.5em;
    margin-right: 2em;
}
.links{
    margin-top:1em;
    margin-right: 2em;
    text-align: center;
}