.auth{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    top: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.auth_container{
    display: flex;
    flex-direction: column;
    height: max-content;
    padding: 20px;
    margin: 10px;
    border-radius: 20px;
    background-color: var(--colorWhite);
    max-height: 90%;
    max-width: 70%;
    overflow: auto;

}

.image_container{
    display: flex;
    justify-items: center;
    justify-content: center;
    align-items: center;
    padding: 20px;

}

.image{
    height: 80px;
}

.items{
    flex-grow: 1;
    overflow: auto;
}

.item{
    display: flex;
    padding: 5px;
    margin-top: 5px;
    /* border-radius: 10px; */

}

.item:hover{
    background: var(--colorSelect);
    border-radius: 15px;

}

.item_head{
    font-size: 14px;
    color: var(--colorHead);
    margin-right: auto;
    margin-top: auto;
    margin-bottom: auto;

}

.item_input{
    font-size: 14px;
    border-color: #D9D9DE;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    text-align: left;
    padding: 5px;
    min-width: 200px;
    /* width: 70%; */

}

.btns{
    margin-top: 20px;
    margin-right: 5px;
    justify-content: start;
    display: flex;

}

.btn{
    background: #292a2b;
    border-radius: 10px;
    padding: 10px;
    width: max-content;
    cursor: pointer;

}

.btn:hover{
    background: var(--colorSelect);
    .btn_head{
        color: var(--colorText);
    }
}

.btn_head{
    color: var(--colorWhite);

}