/* user */
.heswork-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: auto;
    min-height: 100%;
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(97,142,255,1) 0%, rgba(0,56,220,1) 100%);
    z-index: 1000;
    direction: rtl;
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Tax Box */
.tax-box {
    background: #ffffffcf;
    border-radius: var(--border-radius);
    padding: 20px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Multi-Step Form */
.multi-step-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.multi-step-form .form-step {
    display: none;
}
.multi-step-form .form-step.active {
    display: block;
}
.btn-area .prev-step,
.btn-area .next-step {
    width: 49%!important;
}
.btn-area .btn.first-step {
    width: 100%!important;
}
.btn-area .btn.last-step {
    width: 49%!important;
}
.input-box .input-group.tax {
    width: 100%;
}
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.logo-container img {
    width: 150px;
}
div#tax-details {
    text-align: center;
    margin-block: 20px;
}
input.select2-search__field {
    border-radius: 10px;
}
input#annual-income-visible {
    text-align: center!important;
}
.tax-amount {
    font-weight: bold;
    color: rgb(220, 0, 0);
}
.heswork-container .btn-area a {
    padding: 7px!important;
}
p.description::before {
    content: '\2022';
    margin-left: 5px;
    color: rgb(220, 0, 0);
    font-size: 24px;
    line-height: 24px;
}

@media only screen and (max-width : 999px) {
    .tax-box {
        margin: 10px;
        min-width: 200px;
        max-width: unset;
        padding: 10px;
    }
}