::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: rgb(167, 167, 167);
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

html {
    height: stretch;
    height: -webkit-fill-available;
}

body {
    margin: 0px !important;
    min-height: 100vh;
    min-height: stretch;
    min-height: -webkit-fill-available;
}

*,
html,
body {
    /* font-family: "Raleway, sans-serif"; */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0px;
    padding: 0px;
}

p {
    margin: 0px;
}

.label.label-danger {
    color: #FF0000;
    font-size: 14px;
    line-height: 20px;
}

.form__page {
    height: 100%;
    width: 100%;
    background:linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/background.jpg');
    background-size: cover;
    background-position: center;
}

.form__wrap {
    width: 100%;
    max-width: 800px;
    margin: 0px auto;
    padding: 20px 0px;
}

.form__content, .form__img {
    background: #f6f6f6;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 10px;
}

.form__img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form__img img {
    width: auto;
    height: 100%;
    max-height: 300px;
    margin: 0px auto;
    border-radius: 10px;
}

.form__container {
    background: #fff;
    border-radius: 7.5px;
    padding: 40px;
}


.form__container .form-label {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.form-payment__wrap {
    margin: 50px 0px;
}

.form-payment__wrap .fs-6 {
    font-size: 14px !important;
}

.upi__wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 5px;
}

.upi__wrap button {
    cursor: pointer;
}

.upi__info {
    margin: 10px 0px 20px 0px;
}

.upi__info > div {
    display: flex;
    flex-direction: row;
    column-gap:10px;
}

.upi-pay__btn-wrap {
    margin: 50px 0px;
}

.upi-pay__btn-wrap > div:first-child {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.upi-pay__btn-wrap p {
    font-size: 12px;
    line-height: 18px;
    opacity: 0.6;
    text-align: center;
    margin-top: 5px;
}

.upi-pay__btn-wrap > a {
    display: none;
}

.upi-pay__btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    padding: 15px 20px;
    width: 300px;
    margin: 0px auto;
    border-radius: 7.5px;
    transition: all linear 0.3s;
    text-decoration: none;
    /* box-shadow: 0px 0px 10px 2px #ddd; */
    border: none;
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
}

.upi-pay__btn svg {
    height: 30px;
    width: 30px;
}

.upi-pay__btn.phonepe__btn {
    background: #5c249a;
    color: #fff;
}

.upi-pay__btn.phonepe__btn:hover {
    background: #491c7d;
    color: #fff;
}

.upi-pay__btn.googlepay__btn {
    background: #000;
    color: #fff;
}

.upi-pay__btn.googlepay__btn:hover {
    background: #2e2d2d;
    color: #fff;
}

.upi-pay__btn.copyupi__btn {
    background: #0d6efd;
    color: #fff;
}

.upi-pay__btn.copyupi__btn:hover {
    background: #0b5ed7;
    color: #fff;
}

.upi__other-details a {
    cursor: pointer;
}

.custom-flex-row__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 0px;
}

.or__divider {
    position: relative;
    width: 100%;
    opacity: 0.1;
}

.or__divider p {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    background: #fff;
}

/* .or__divider::after {
    position: absolute;
    top: 15px;
    content: "";
    height: 2px;
    width: 100%;
    background: #000;
} */

/* .submit-btn {
    width: 250px;
} */

@media only screen and (max-width: 768px) {
    .form__content, .form__container, .form__img {
        padding: 20px 17.5px;
    }

    .form__img img {
        width: 100%;
        height: auto;
    }

    .form__wrap {
        padding: 20px 17.5px;
    }

    .upi-pay__btn {
        max-width: 90%;
        width: 100%;
    }
}