.holderForm{
    max-width: 800px;
    width: 90%;
    margin: auto;
    
}
input,option, select,.bearPass{
    margin-top: 12px;
    padding: 10px;
    font-size: 1rem;
    /* max-width: 620px; */
    border: 1px solid #939393;
    border-radius: 6px;
    width: 100%;
    /* outline: 1px solid #121212; */
    outline-offset: 1.5px;
}
input:focus{
    outline: 1px solid green;
    border-color: green;
}
select, option{
    border: 1px solid #121212;
    background: #fff;
}
.pass2{
    width: 100%;
}
form{
    max-width: 500px;
    width: 100%;
    margin: auto;
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px solid #eee;
}
.formItem{
    margin: 16px 0;
    /* background: rebeccapurple; */
    display: grid;
    height: fit-content;
}
.formItem label{
    font-size: 1rem;
    font-weight: 400;
}
.bearPass{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px
}
.bearPass button{
    max-width: fit-content;
    border: 1px solid #121212;
    background: #fff;
    padding: 6px;
}
button[type=submit]{
    max-width: fit-content;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 15px;
    background: green;
    border: #121212 1px solid;
    color: #fff;
    border-radius: 6px;

}