
.registration {
    padding: 220px 0 100px;
    background-image: url('../assets/image-10.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    @include media-breakpoint-down(md) {
        padding: 140px 0 100px;
    }

    &::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        background: $secondarycolor;
        opacity: 0.85;
    }

    &.otp {
        padding: 150px 0 100px;

        .button {
            max-width: 350px;
        }
    }

    .phone-number {
        border: 1px solid rgba(255,255,255,0.3);
        border-radius: 40px;
        margin: 0 0 20px;

        .form-control {
            border: none !important;
        }

        .isd {
            width: 70px !important;
            position: relative;

            &::before {
                content: "";
                position: absolute;
                right: -2px;
                top: 14px;
                height: 16px;
                width: 1px;
                background: $white;
            }
        }
    }
}

.reg-list {
    margin: 0 0 35px;
    
    li {
        position: relative;
        font-size: 11px;
        font-weight: 500;
        line-height: 14px;
        color: #686868;
        text-align: center;

        &.active {
            color: $primarycolor;

            &::after {
                border-color: $primarycolor !important;
            }

            span {
                background: $primarycolor;
                color: $white;
            }
        }

        &:not(:first-child)::after {
            content: "";
            position: absolute;
            top: 11px;
            height: 1px;
            border-top: 1px dashed #686868;
            z-index: 1;
        }

        &:nth-child(2)::after {
            width: 118px !important;
            right: 43px !important;

            @include media-breakpoint-down(lg) {
                width: 90px !important;
            }

            @include media-breakpoint-down(md) {
                width: 130px !important;
            }
        }

        &:nth-child(3)::after {
            width: 120px !important;
            right: 35px !important;

            @include media-breakpoint-down(lg) {
                width: 92px !important;
            }

            @include media-breakpoint-down(md) {
                width: 132px !important;
            }
        }

        &:nth-child(4)::after {
            width: 120px !important;
            right: 44px !important;

            @include media-breakpoint-down(lg) {
                width: 94px !important;
            }

            @include media-breakpoint-down(md) {
                width: 132px !important;
            }
        }

        &:nth-child(5)::after {
            width: 129px !important;
            right: 42px !important;

            @include media-breakpoint-down(lg) {
                width: 101px !important;
            }

            @include media-breakpoint-down(md) {
                width: 140px !important;
            }
        }

        span {
            font-size: 13px;
            font-weight: 600;
            position: relative;
            width: 24px;
            height: 24px;
            color: $white;
            background: #686868;
            text-align: center;
            line-height: 24px;
            border-radius: 12px;
            display: block;
            margin: 0 auto;
        }
    }
}

.custom-file-upload {
    cursor: pointer;

    .file-upload {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        opacity: 0;
    }
}

.form-wrap {
    width: 330px;
}

.other-option {

    a {
        font-size: 12px;
        font-weight: 600;
        color: $white;
    }
}

.or-text {
    position: relative;

    &::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        right: 0;
        width: 100%;
        height: 1px;
        background: $white;
    }

    span {
        background: #1B191A;
        position: relative;
        z-index: 4;
        display: block;
        width: 30px;
        margin: 0 auto;
        color: $white;
        font-size: 13px;
        text-align: center;
    }
}