.customer-signin-acc{
    min-height:100vh;
    display:flex;
    justify-content: center;
    align-items: center;
}
.customer-image{
    max-width:800px ;
    padding: 20px 0;
    margin: 0 auto;
}
.customer-image > img{
    width:100%;
    height:100%;
    object-fit:contain;
}
.customer-signin-acc .row{
    align-items:center;
}
.create-signin-sec{
    max-width:550px;
    margin: 0 auto;
}
.welcome-heading{
    max-width:287px;
    margin: 0 auto;
    margin-bottom:40px;
}
.welcome-title{
    text-align: center;
    color:var(--primary-color);
    font-size:30px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: var(--text-type);
    letter-spacing: -3%;
}
form{
   
    max-width:450px;
}
form input:hover{
    background-color:rgba(0,0,0,20%);
}
.email-form label{
    font-size:16px;
    font-weight: 400;
    color:var(--label-color);
    margin-bottom:10px;
}
.password-form label{
    font-size:16px;
    font-weight: 400;
    color:var(--label-color);
    margin-bottom:10px;
}
.input-wrapper{
   position:relative;
}
.input-wrapper  input{
    width:100%;
    height:50%;
    padding-right:40px;
}
.input-wrapper svg{
    position:absolute;
    right:18px;
    bottom:62px;
    transform:translateY(50%);
    cursor:pointer;
    transition: color 0.3s ease;
}
.terms{
    max-width:450px;
    display:flex;
    justify-content: space-between;
    align-items: center;
    margin:10px 0;
    margin-bottom:20px;
}
.terms .pass{
    text-decoration: underline !important;
    font-size:14px;
    font-weight: 400;
    color:var(--primary-color);
    margin-left:206px;
}
.terms label{
    font-size:10px;
    font-weight:300;
    color:rgba(0, 0, 0, 60%);
    font-family: var(--text-type);
}
.email-form input[type=email],
.password-form input[type=password]{
    max-width:450px;
    width:100%;
    padding:10px 20px;
    border:1px solid rgba(0, 0, 0, 20%);
    border-radius:5px;
    margin-bottom:20px;
}
.sign-in{
    font-family: var(--text-type);
    font-size:16px;
    font-weight:400;
    color:var(--label-color);
    text-align:center;
}
.sign{
    color:var(--primary-color);
    text-decoration: underline !important;
}
.sign-in button{
    border:none;
}
@media screen  and (max-width:1024px){
    .col-7{
        width:100%;
        margin: 0 auto;
    }
    img{
        width:80%;
        height:80%;
    }
    .col-5{
        width:100%;
    }
    
}
@media screen and (max-width:768px){
    .col-5{
        width:100%;
        margin:0 auto;
    }
}
@media  screen and (max-width:576px) {
    .secondary-btn{
        font-size:14px;
    }
    
}
@media screen and (max-width:375px) {
    .password-form input[type=password]{
    font-size:11px;
}
.terms{
    display:block;
}
.terms .pass{
    margin-left:75px;
}
}