@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f5f5f5;
    height: auto;
}

.login-form {
    padding: 0px 15px 0px 15px;
}

header {
    background: #fff;
    padding: 20px 80px;
}

header img {
    height: 40px;
}

@media only screen and (max-width: 768px) {
    header {
        padding-left: 20px !important;
    }
}

.form-box {
    width: 30%;
    margin: 70px auto 0px auto;
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    /* margin-top: 60px; */
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.form-box-new {
    width: 40%;
    margin: 50px auto;
    background: #fff;
    border-radius: 15px;
    /* margin-top: 60px; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.input {
    padding: 12px;
    border-radius: 8px;
    border: none;
    border: 3px solid #435770;
    outline: none !important;
    background: inherit;
    width: 100%;
}

.next {
    padding: 12px;
    border-radius: 8px;
    border: 3px solid #435770;
    outline: none !important;
    background: #435770;
    color: #fff;
    font-weight: 500;
    width: 100%;
    margin-top: 20px;
}

.next:disabled {
    border-color: #97a9c1;
    background: #97a9c1;
}

.form-box i {
    color: #435770;
    font-size: 50px;
    padding-bottom: 20px;
}

h2 {
    font-weight: 700;
    color: #435770;
    margin-bottom: 0px;
}

h4 {
    font-weight: 600;
    color: #435770;
    margin-bottom: 0px;
    font-size: 18px;
}

.justify-content-between h4 {
    font-size: 12px;
}

.option {
    font-weight: 600;
    color: #435770;
    margin-bottom: 0px;
    font-size: 12px;
    width: 88%;
    appearance: none;
    position: relative;
}

.option1 {
    color: #435770;
    margin-bottom: 0px;
    font-size: 15px;
}

select {
    border: none;
    outline: none !important;
}


p {
    color: #435770;
}

a:hover {
    text-decoration: none;
}

.address {
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 12px;
    border-radius: 5px;
}

.address input {
    border: none;
    outline: none !important;
    width: 95%;
    padding-left: 10px;
}

.address-new {
    margin-bottom: 10px;
}

.address-new input {
    border: none;
    outline: none !important;
    width: 100%;
    font-weight: 500;
}

.login-new-card {
    padding: 0px 0px;
}

.login-new-card h2 {
    font-size: 55px;
}

.arrow {
    height: 40px;
    width: 40px;
    border: 3px solid #435770;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 23px;
}

.arrow i {
    color: #435770;
}

.card-box {
    width: 100%;
    height: 140px;
    margin-bottom: 20px;
}

.text {
    font-size: 12px;
    margin-top: 30px;
}

.head {
    padding: 15px 0px;
    border-bottom: 2px solid #c0c0c0;
}

.form-box-new .content {
    padding: 40px;

}

.form-box-new .head h2 {
    text-align: center;

}

.content ul {
    display: flex;
    list-style-type: none;
    font-size: 14px;
}

.content ul li button {
    border-radius: 30px;
    font-size: 11px;
    padding: 8px;
    margin-right: 5px;
    margin-top: 20px;
    font-weight: 500;
    border: 2px solid #c0c0c0;
    background: inherit !important;
}

.content h3 {
    font-weight: 600;
    color: #c0c0c0;
    margin-bottom: 0px;
    font-size: 20px;
}

.accodian {
    display: flex;
    justify-content: space-between;
}

.accodian i {
    font-size: 20px;
    padding-left: 10px;
}

.accodian h2 {
    font-size: 18px;
}

:root {
    --primary-color: #435770;
}

/* Progressbar */
.progressbar {
    position: relative;
    display: flex;
    justify-content: space-between;
    counter-reset: step;
    margin: 2rem 0 4rem;
}

.progressbar::before,
.progress {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    width: 100%;
    background-color: #dcdcdc;
    z-index: -1;
}

.progress {
    background-color: var(--primary-color);
    width: 0%;
    transition: 0.3s;
}

.progress-step {
    width: 2.1875rem;
    height: 2.1875rem;
    background-color: #dcdcdc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress-step::before {
    counter-increment: step;
    /* content: counter(step); */

}

.progress-step::after {
    content: attr(data-title);
    position: absolute;
    top: calc(100% + 0.5rem);
    font-size: 0.85rem;
    color: #666;
}

.progress-step-active {
    background-color: var(--primary-color);
    color: #f3f3f3;
}

/* Form */

.form-step {
    display: none;
    transform-origin: top;
    animation: animate 0.5s;
    margin-bottom: 50px;
}

.form-step-active {
    display: block !important;
}

@keyframes animate {
    from {
        transform: scale(1, 0);
        opacity: 0;
    }
    to {
        transform: scale(1, 1);
        opacity: 1;
    }
}

/* Button */
.btns-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.btn {
    padding: 0.75rem;
    display: block;
    text-decoration: none;
    background-color: var(--primary-color);
    color: #f3f3f3;
    text-align: center;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--primary-color);
}

.cost-content h4 {
    color: #435770;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    padding-top: 10px;
}

.address i {
    color: #435770;
}

@media only screen and (max-width: 768px) {
    .form-box {
        width: 100%;
        padding: 50px 20px;
    }

    .login-new-card h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .login-new-card h2 br {
        display: none;
    }

    .position-arow {
        position: absolute;
        top: 105px;
        left: 0px;
    }

    .card-box {
        height: 160px;
    }

    .form-box-new {
        width: 92%;
    }

    h2 {
        font-size: 20px;
    }

    .content h3 {
        font-size: 15px;
    }

    .form-box-new .content {
        padding: 20px;
    }

    .accodian h2 {
        font-size: 15px;
    }

    .content {
        overflow-x: hidden;
    }

    .content ul {
        white-space: nowrap;
        overflow-x: scroll;
    }

    .next {
        padding: 10px;
        font-size: 13px;
    }

    .address {
        display: flex;
    }

    .address i {
        padding-top: 4px;
    }

    .progress-step {
        width: 1.8rem;
        height: 1.8rem;
    }
}

.option::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: '\f105';
    position: absolute;
}