* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
}

body {
    font-family: sans-serif;
    color: rgba(77, 78, 86, 1);
    font-size: 14px;
    font-weight: 400;
}

a {
    text-decoration: none;
    list-style: none;
    line-height: 12px;
    padding-bottom: 8px;
    padding-top: 8px;
    width: auto;
}

a:hover {
    text-decoration: none;
}

.row {
    margin-right: 0;
    margin-left: 0;
}

.left_side_css {
    --bg-opacity: 1;
    background-color: rgba(247, 247, 248, var(--bg-opacity));
    padding: 3%;
}

@media (min-width: 768px) {
    .left_side_css {
        min-height: 100vh;
    }
}

/* Right Side Css */
.right-container {
    padding: 4% 8%;
    background-color: #fff;
}

.right-side-head {
    display: flex;
    align-items: start;
    justify-content: flex-start;
    gap: 1rem;
}

.right-side-head img {
    width: 30px;
    height: 30px;
}

.text-head {
    color: black;
    margin-bottom: 1rem;
}

.text-main {
    color: #3333338f;
    display: flex;
    gap: 0.5rem;
    justify-items: baseline;
}

.text-main span {
    width: auto;
}

.text-main span:nth-child(2),
.text-main span:nth-child(1) {
    border-right: 2px solid rgba(0, 0, 0, 0.275);
    padding-right: 1%;
}

@media (min-width: 1129px) {
    .lg\:mt-10 {
        margin-top: 40px;
    }
}

.mb-6 {
    margin-bottom: 24px;
}

.border-grey-light {
    --border-opacity: 1;
    border-color: #c8c9cb;
    border-color: rgba(200, 201, 203, var(--border-opacity));
}

hr {
    border-top-width: 1px;
}

.help-center {
    text-align: start;
}

.help-center a {
    display: block;
}

.help-center p {
    margin-bottom: 0;
    padding-bottom: 0;
    font-size: 16px;
    color: black;
}

.btn_btn {
    width: auto;
    padding: 2% 12%;
    border-radius: 25px;
    border: 0;
    cursor: pointer;
}

.footer {
    margin-top: 3rem;
}

.footer .div-container {
    text-align: center;
}

@media (min-width: 768px) {
    .footer .div-container {
        text-align: start;
    }
}

.footer .div-container a {
    color: #333333;
    text-decoration: none;
    margin-right: 10px;
}


.step-container {
    position: relative;
    text-align: center;
    transform: translateY(-43%);
}

.step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #7f30ca;
    line-height: 30px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    cursor: pointer;
    /* Added cursor pointer */
}

.step-line {
    position: absolute;
    top: 16px;
    left: 50px;
    width: calc(100% - 100px);
    height: 2px;
    background-color: #7f30ca;
    z-index: -1;
}

#multi-step-form {
    overflow-x: hidden;
}

.progress-bar {
    background-color: #a60ccc;
}

.download_apps {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.download_apps .logo {
    width: 120px;
}

.download_apps p {
    font-size: 16px;
}

.download_link {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
}

@media (min-width: 968px) {
    .download_link {
        flex-direction: row;
    }
}

.download_link img {
    border-radius: 15px;
    width: 180px;
}