
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html,body{
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body{
    font-family: var(--text-type);
}
:root{
    --primary-color:#D8232A;
    --text-type: "Poppins", sans-serif;
    --label-color:#000000;
    --btn-txt-color:#FFFFFF;
}
a{
    display:inline-block;
    text-decoration:none;
}
.customer-acc-sec{
    min-height:100vh;
    display:flex;
    justify-content: center;
    align-items: center;
}
.container{
    max-width:1386px;
    margin: 0 auto;
    padding: 0 15px;
    width:100%;
}
.row{
    display:flex;
    flex-wrap:wrap;
    margin: 0 -15px;
}
.col-7{
    width:calc(8.33% *7);
    padding: 0 15px;
}
.col-5{
    width: calc(8.33% *5);
    padding: 0 15px;
}
.customer-image{
    max-width:800px ;
    padding: 20px 0;
    margin: 0 auto;
}
.customer-image > img{
    width:100%;
    height:100%;
    object-fit:contain;
}
.customer-acc-sec .row{
    align-items:center;
}
.crate-acc-sec{
    max-width:550px;
    margin: 0 auto;
}
.crate-heading{
    max-width:362px;
    margin:0 auto;
    margin-bottom: 40px;
}
.user-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{
    padding:0 50px;
}
form input:hover{
    background-color:rgba(0,0,0,20%);
}
.acc-form label{
    font-size:16px;
    font-weight: 400;
    color:var(--label-color);
    margin-bottom:10px;
}
.acc-form input[type=email],
.confirm-form input[type=password],
.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;
    cursor:pointer;
}
.password-form label{
    font-size:16px;
    font-weight: 400;
    color:var(--label-color);
    margin-bottom:10px;
}
.confirm-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;
}
.input-wrapper svg:hover{
    color:var(--primary-color);
}
.terms{
    margin-bottom:20px;
    cursor: pointer;
}
.terms label{
    font-size:13px;
    font-weight:300;
    color:rgba(0, 0, 0, 60%);
    font-family: var(--text-type);
}
.terms span{
    color:var(--primary-color);
}
.primary-btn{
    width:100%;
    display:inline-block;
    background: var(--primary-color);
    border-radius:10px;
    font-family: var(--text-type);
    color:var(--btn-txt-color);
    padding:10px 0;
    border:none;
    cursor:pointer;
    position:relative;
    overflow:hidden;
    margin-bottom:20px;
}
.primary-btn >span{
    position:relative;
    z-index:2;
}
.primary-btn::after{
    content:"";
    height:100%;
    width:100%;
    transform:scale(0);
    background:rgba(0, 0, 0, 100%);;
    position:absolute;
    top:0;
    transition:1s linear;
    left:0;
}
.primary-btn:hover::after{
    transform:scale(1000);
}
.or-text{
    text-align:center;
    margin-bottom:20px;
}
.secondary-btn{
    width:100%;
    font-family:var(--text-type);
    text-transform: capitalize;
    font-size:16px;
    font-weight:400;
    display:flex;
    align-items:center;
    justify-content:center;
    background: transparent;
    border-radius:10px;
    color:#000000;
    border:1px solid rgba(0, 0, 0, 20%);
    padding:10px 0;
    cursor:pointer;
    position:relative;
    overflow:hidden;
    margin-bottom:40px;
}
.secondary-btn >span{
    position:relative;
    z-index:2;
}
.secondary-btn::after{
    content:"";
    height:100%;
    width:100%;
    transform:scale(0);
    background:rgba(0, 0, 0, 60%);
    position:absolute;
    top:0;
    transition:1s linear;
    left:0;
}
.secondary-btn:hover::after{
    transform:scale(1000);
}
.secondary-btn  svg{
   width:20px;
   height:20px;
   margin-right:10px;
}
.acc-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;
    cursor:pointer;
}
@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) {
    .confirm-form input[type=password],
    .password-form input[type=password]{
    font-size:11px;
}
}