.user-reg-form{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;    
    width: 400px;
    height: auto;
    padding: 20px;
    margin: 50px auto;
    border-radius: 20px;
}

.reg-form-continer{
    text-align: center;
}

.user-reg-icon img{
    width: 100px;
    border-radius: 100%;
    border: 5px solid green;
}

.reg-form-inputs input{
    width: 80%;
    height: 30px;
    border-radius: 10px;
    border: 2px solid black;
    margin: 10px auto;
    padding-left: 20px;
}

.reg-form-inputs input:focus{
    border: 2px solid rgb(60, 126, 60);
    outline: none;
}

.register-forms-btns button{
    width: 50%;
    margin: 10px auto;
    height: 30px;
    border-radius: 10px;
    border: 0px;
    cursor: pointer;
}


.register-forms-btns button:first-child{
    background-color: var(--login-btn-color);
    color: white;
    font-family: var(--text-font-my-famaly);
    font-size: 15px;
}

.register-forms-btns button:first-child:hover{
    background-color:  rgb(64, 22, 56);
}

.register-forms-btns button:last-child{
    background-color: green;
}

#reg-login-button-span button{
    background-color: green;
}


#reg-login-button-span button:hover{
    background-color: rgb(47, 89, 47);
}

.input-fields-cells img{
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-right: 10px;
    /* border: 1px solid black; */
    margin-bottom: -10px;
}


@media only screen and (max-width: 600px) 
{   
    .reg-form-inputs input{
        width: 70%;
    }

    .user-reg-form{
        min-height: 300px;
    }

}

