  html, body {
    overflow-x: hidden;
}
    
        .lds-dual-ring.hidden {
            display: none;
        }
        .lds-dual-ring {
            display: inline-block;
            width: 80px;
            height: 80px;
        }
        .lds-dual-ring:after {
            content: " ";
            display: block;
            width: 64px;
            height: 64px;
            margin: 20% auto;
            border-radius: 50%;
            border: 6px solid #fff;
            border-color: #fff transparent #fff transparent;
            animation: lds-dual-ring 1.2s linear infinite;
        }
        @keyframes lds-dual-ring {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1020;
            opacity: 1;
            transition: all 0.5s;
        }
        @import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #dcd9d9;
}

.container {
    padding: 40px;
    min-height: 600px;
    margin-top: 70px;
    margin-bottom: 70px;
    position: relative;
}

#payment {
    height: 95px;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 99%);
    background-color: #FF5100;
    padding: 15px 10px 0px;
}

.green-label {
    font-size: 0.85rem;
    color: #FFF;
    background-color: #21bf73;
    border-radius: 3px;
    padding: 0px 5px;
    top: -10px;
    left: 15px;
    z-index: 100;
    position: absolute;
}

#rupee {
    position: absolute;
    right: 25px;
    top: 10px;
}
#rupee img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 3px;
}
#rupee span {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: #0779e4;
    background-color: #ffcc29;
    padding: 3px 20px 5px;
    border-radius: 50%;
}


#over {
    position: relative;
    z-index: 1000;

}

a:hover {
    text-decoration: none;
}

a:hover .fa-arrow-right {
    transform: translate(5px);
}

.container .wrapper {
    padding: 40px 20px;
    width: 350px;
    height: 640px;
    position: absolute;
    left: 30%;
    top: -62px;
}


/* Icons */
.fa-arrow-right {
    padding-left: 2px;
    transition: all .3s ease-in;
}


/* Utility */
.text-lighter {
    color: #ddd;
    font-size: 0.89rem;
}

img {
    object-fit: contain;
    width: 20px;
    height: 20px;
}

.btn.d-flex {
    border: 1px solid #0779e4;
    color: #0779e4;
    font-weight: 600;
    background-color: #f0f5fa;
}

.btn.d-flex:hover {
    background-color: #dfedfc;
    color: #016acc;
}

.bordered {
    border: 1px solid #ddd;
}

.border-top {
    position: relative;
}

.bg-md-white {
    background-color: #FF5100;
}

.border-top:after {
    content: 'or';
    position: absolute;
    padding: 0px 10px;
    background-color: #fff;
    top: -13px;
    left: 40%;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

label {
    color: #fff;
    font-size: 0.86rem;
    margin: 0;
    font-weight: bold;
}
.invalid {
    color: black;
    font-weight: bold;
}

.btn-primary:hover {
	background-color:#000000;
}

.form-control {
    border: none;
    border-bottom: 1px solid #ddd;
    height: 30px;
    border-radius: 0px;
}

.form-control:focus {
    box-shadow: none;
}

.caption {
    font-size: 0.81rem;
}

.mt-auto {
    font-size: 0.9rem;
}
.btn-primary {
  color: #fff;
  background-color: #000000;
  border-color: #000000;
}
#password-link, a {
  color: #fff;
}
/* Scroll bars */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #ec0101, #f7e92b);
    border-radius: 6px;
}


/* Media Queries */

@media(min-width:992px) and (max-width: 1199px) {
    .container .wrapper {
        left: 18%;
    }
}

@media(min-width:768px) and (max-width: 991px) {
    .container .wrapper {
        left: 0%;
    }
}

@media(max-width:767px) {
    .container {
        padding: 20px;
    }

    .container .wrapper {
        position: unset;
        width: max-content;
        display: block;
    }

    .bordered {
        border: none;
    }

    .bg-md-white {
        background-color: #FF5100;
    }

    .border-top:after {
        background-color: #f7f7f7;
    }

    .form-control {
        background-color: inherit;
    }
    
}

@media(max-width:575px) {
    .container {
        padding: 20px;
        margin: 10px;
    }

    .container .wrapper {
        width: 400px
    }
}

@media(max-width: 424px) {
    .container .wrapper {
        width: fit-content;
        padding: 20px;
    }
}
.heading-text
{
	color:white;
}