
:root{
    --primary-color:#F82643;
    --cart-added: #0AC59A;
    --white-color:#ffffff;
    --primary-blue:#005BE3;
    --primary-orange:#F8A026;
    --secondary-green:#58B665;
    --yellow-light:#FFF9EB;
    --black-color:#000000;
    --green-btn:#79B52D;
    --border-color:#dddddd;
    --content-grey:#606060;
    --clarification-orange: #F8A026;
    --clarification-blue:#005BE3;
    --bg-color:#f5f5f5;
}
.signup-section{
    padding:40px 0;
}
.signup-section.signup-section-successful{
    padding:80px 0;
}
.signup-header{
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
}
.signup-header h1{
    font-size: 24px;
    font-weight: 600;
}
.signup-header p{
    font-size: 15px;
    font-weight: 400;
}
.signup-forms{
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}
.signup-innerTitle h2{
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 15px;
    margin: 0;
}
.signup-innerTitle h2 span{
    color: var(--primary-color);
}
.signup-innerTitle.business-innerTitle{
    padding-bottom: 15px;
}
.signup-innerTitle.business-innerTitle h2 {
    margin: 0;
    padding: 0;
}
.signup-innerTitle.business-innerTitle p{
    font-size: 14px;
    font-weight: 400;
}
.formError-msg {
    color: red;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}
.signup-instrcutions-img img{
    height: 300px;
    object-fit: cover;
}
.signup-instrcutions-content{
    background-color: var(--bg-color);
}
.signup-instrcutions-content h3{
    font-size: 18px;
    font-weight: 600;
}
.signup-instrcutions-content p{
    font-size: 14px;
}
.signup-instrcutions-list{
    padding: 0;
}
.signup-instrcutions-list li{
    font-size: 14px;
    font-weight: 400;
    column-gap: 10px;
    margin-bottom: 10px;
}
.signup-instrcutions-list li b{
    font-weight: 500;
}
.signup-instrcutions-help span{
    display: block;
    font-size: 15px;
    font-weight: 600;
}
.formCheck-selection label{
    font-size: 14px;
    color: #000;
    font-weight: 600;
}
.formCheck-selection label span{
    color: var(--primary-color);
}
.formCheck-selection .formCheck-selection-list{
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin:10px 0;
}
.formCheck-selection .formCheck-selection-list .custom-check{
    display: flex;
    align-items: center;
    column-gap: 5px;
}
.formCheck-selection .formCheck-selection-list .custom-check label{
    color:var(--black-color);
    font-weight: 400;
    font-size: 14px;
    position: relative;
    top:2px;
}
.signupForm-radio{
    padding:0;
}
.signupForm-radio label{
    border:1px solid var(--border-color);
    padding: 15px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 14px;
    position: relative;
    transition: 0.3s all ease-in-out;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
}
.signupForm-radio input{
    display: none;
}
.signupForm-radio .form-check-input:checked[type=checkbox] + label{
    border:1px solid var(--primary-color);
    transition: 0.3s all ease-in-out;
    position: relative;
}
.signupForm-radio .form-check-input:checked[type=checkbox] + label::before{
    position: absolute;
    content: '\f058';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color:var(--primary-color);
    font-size: 17px;
    top:2px;
    right:3px;
    transition: 0.3s all ease-in-out;
}
.signupConfirm{
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.signupConfirm input{
    position: relative;
    top:-3px;
}
.signupConfirm label{
    font-size: 14px;
}
.signupConfirm label a{
    color:var(--primary-blue);
}
.signupbtns{
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.signupbtns button{
    font-size: 15px;
    font-weight: 500;
    padding: 0 25px;
}
.signupbtns a{
    color: var(--black-color);
    font-size: 15px;
}
.signupCover{
    padding-right: 40px;
}
/* Signup Successful */
.signup-successful{
    display: flex;
    align-items: center;
    justify-self: center;
    height: 50vh;
}
.signup-successful i{
    font-size: 60px;
    color: var(--green-btn);
    font-weight: 400;
}
.signup-successful h1{
    font-size: 24px;
    color: #3ba429;
    font-weight: 600;
}
.signup-successful p{
    margin: 0;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.6;
}
.signup-successful .button-effect{
    text-align: center;
    margin: 0 auto;
}
.signup-successful .button-effect a{
    border-radius: 6px;
    font-size: 14px;
    width: 200px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.signup-instrcutions-img figure{
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.signup-instrcutions-img figure::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255,255,255,.2);
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}
.signup-instrcutions-img:hover figure::before {
    -webkit-animation: imageCircleHover .75s;
    animation: imageCircleHover .75s;
}
@-webkit-keyframes imageCircleHover {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}
@keyframes imageCircleHover {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}
/* Signup Successful */
@media only screen and (max-width:1199px) {
    .signupCover{
        padding-right: 0;
    }
    .signup-instrcutions-img img{
        height: 250px;
    }
    .signup-section{
        padding: 20px 0;
    }
}
@media only screen and (max-width:991px) {
    .pr-md-5, .pr-5{
        padding-right: 5px;
    }
    .pl-md-5, .pl-5{
        padding-left: 5px;
    }
    .signup-section{
        padding: 0;
    }
}
@media only screen and (max-width:767px) {
    .signup-instrcutions-content p, .signup-instrcutions-list li {
        font-size: 13px;
    }
    .signup-instrcutions-list li img{
        width: 16px;
        position: relative;
        top:3px;
    }
    .signup-innerTitle h2{
        font-size: 16px;
        padding-bottom: 15px;
    }
    .formError-msg {
        font-size: 13px;
    }
    .signup-header h1{
        font-size: 21px;
    }
    .signup-header p{
        font-size: 13px;
    }
    .signup-successful{
        height: 70vh;
    }
    .signup-instrcutions-img img{
        height: auto;
    }
    .pr-md-5{
        padding-right: calc(var(--bs-gutter-x) * .5);
    }
    .pl-md-5{
        padding-left: calc(var(--bs-gutter-x) * .5);
    }
    .signupForm-radio label, .choose-state select, .formCheck-selection .formCheck-selection-list .custom-check label{
        font-size: 13px;
    }
    /* Signup Successful */
    .signup-successful h1{
        font-size: 21px;
    }
    .signup-successful p{
        font-size: 13px;
    }
    /* Signup Successful */
}