.shop-contact{
    width: fit-content;
    margin: auto;
    padding: 20px;
}
.shop-contact h1{
    font-size: 24px;
    padding: 10px 0;
    border-bottom: 1px solid #e4e4e4;
}
.shop-contact h2{
    font-size: 18px;
    
}
.shop-contact .fin{
    padding: 10px;
}
.shop-contact p a{
    color: #3a5a95 !important;
}
.shop-contact p.error ,
.shop-contact .error p{
    color: #e50012;
}
.shop-contact .attention{
    padding: 1em 0 ;
    width: fit-content;
    margin: auto;
}
.shop-contact form{
    margin: auto;
    width: fit-content;
    /* background-color: #f5f5f5; */
    padding: 20px;
}
.shop-contact form dl{
    display: flex;
    flex-direction: column;
    gap:0.5em;
}
.shop-contact form dd{
    display: flex;
    flex-direction: column;
}

.shop-contact form select,
.shop-contact form input[type=email],
.shop-contact form input[type=password],
.shop-contact form input[type=text],
.shop-contact form textarea{
    margin: 0 0em;
    width: 50em;
    max-width: 500px;
    padding: 0.5em;
 
    border: 2px solid #e5e5e5;
    border-radius: 3px;
    -webkit-appearance: none;

}

.shop-contact form textarea{
    resize: vertical;
    height: 12em;
    min-height: 3em;
}
.shop-contact form input[type=email]:read-only,
.shop-contact form input[type=text]:read-only,
.shop-contact form textarea:read-only{
    border: none;
    border-bottom: 2px solid #e5e5e5;

    height: fit-content;
    field-sizing: content;
}


.shop-contact form input[type=email]:read-only:focus ,
.shop-contact form input[type=text]:read-only:focus ,
.shop-contact form textarea:read-only:focus {
    outline: none;
}

.shop-contact form .item{
    font-weight: bold;
    border-bottom: 2px solid #e5e5e5;
}
.shop-contact form .button_list{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:10px;
    margin: 10px 0;
}
.shop-contact form .button_list button{
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;

    padding: 0.5em 2em;
    border-radius: 5px;
    transition: .2s;
    color: #222;
    border: solid 1px #222;
    min-width: 15em;
}
.shop-contact form .button_list button:hover{
    background-color: #222;
    color: #fff;
}
.shop-contact form .button_list li:nth-child(2) button{
    color: #fff ;
    background-color: #e50012;
    border: 1px solid #e50012;
}
.shop-contact form .button_list li:nth-child(2) button:hover{
    color: #222;
    background-color: #fff;
    border: 1px solid #222;
    
    
}
.shop-contact .foot_link{
    padding: 30px 0 0 0;
}
.shop-contact .foot_link a{
    display: block;
    margin: auto;
    
    padding: 0.5em 2em;
    border-radius: 5px;
    transition: .2s;
    color: #fff ;
    background-color: #e50012;
    border: 1px solid #e50012;
    width: 20em;
    text-align: center;
}
.shop-contact .foot_link a:hover{
    color: #222 !important;
    background-color: #fff;
    border: 1px solid #222;
}
.shop-contact .forget a{
    display: flex;
}