/*====================================================
    GLOBAL
====================================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    font-family: 'Poppins',sans-serif;
    background: #eef2ff;
    color: #222;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

:root {
     --primary: #000393;
    --primaryDark: #000152;
    --secondary: #031fd1;
    --light: #ffffff;
    --border: #ececf7;
    --text: #35384d;
    --muted: #7d849b;
    --success: #18b56b;
    --warning: #ffc107;
    --danger: #e74c3c;
}

/*====================================================
    PAGE
====================================================*/

.register-page {
    position: relative;
    min-height: 100vh;
    padding: 0 25px;
    background: linear-gradient(rgba(20,18,45,.82),rgba(20,18,45,.82)), url("bg.jpg") center center/cover no-repeat;
    background-attachment: fixed;
}

.bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,.08), transparent 45%);
    pointer-events: none;
}

.container-fluid {
    position: relative;
    z-index: 5;
    max-width: 1600px;
}

/*====================================================
    LEFT PANEL
====================================================*/

.payment-panel {
    color: #fff;
    padding: 0px;
}

.page-tag {
    display: inline-block;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.15);
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 15px;
}

.payment-panel h2 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.payment-panel > p {
    color: rgba(255,255,255,.85);
    line-height: 1.5;
    margin-bottom: 14px;
    font-size: 14px;
}

/*====================================================
    QR CARD
====================================================*/

.qr-card {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 10px;
    padding: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

    .qr-card h5 {
        color: #fff;
        font-size: 12px;
        margin-bottom: 5px;
    }

.tid {
    font-size: 15px;
    color: #d7cfff;
    margin-bottom: 18px;
}

.upi-id {
    display: inline-block;
    background: #fff;
    color: var(--primary);
    font-weight: 600;
    border-radius: 40px;
    padding: 5px 10px;
    font-size: 14px;
    margin-bottom: 5px;
}

.qr-image {
    width: 240px;
    object-fit: contain;
    background: #fff;
    padding: 12px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,.20);
}

.amount-box {
    margin-top: 30px;
    background: rgba(255,255,255,.10);
    border-radius: 20px;
    padding: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .amount-box h3 {
        font-size: 34px;
        color: #fff;
        margin-bottom: 5px;
    }

    .amount-box small {
        color: #ddd;
    }

    .amount-box .badge {
        font-size: 13px;
        padding: 8px 15px;
        border-radius: 30px;
    }

/*====================================================
    BUTTONS
====================================================*/

.btn-light {
    border: none;
    border-radius: 14px;
    height: 50px;
    font-weight: 600;
    transition: .3s;
}

    .btn-light:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,.18);
    }

/*====================================================
    CARD HOVER
====================================================*/

.qr-card {
    transition: .35s;
}

    .qr-card:hover {
        
        box-shadow: 0 30px 70px rgba(0,0,0,.30);
    }

/*====================================================
    UTILITIES
====================================================*/

.shadow-lg {
    box-shadow: 0 20px 60px rgba(0,0,0,.25) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.rounded-20 {
    border-radius: 20px;
}

.rounded-30 {
    border-radius: 30px;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

/*====================================================
    PAYMENT TIMELINE
====================================================*/

.payment-steps {
    margin-top: 40px;
}

    .payment-steps h5 {
        color: #fff;
        font-size: 18px;
        margin-bottom: 18px;
        font-weight: 600;
    }

.timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

    .timeline::before {
        content: "";
        position: absolute;
        left: 20px;
        top: 10px;
        width: 2px;
        height: calc(100% - 20px);
        background: rgba(255,255,255,.18);
    }

    .timeline li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 12px;
        position: relative;
    }

        .timeline li:last-child {
            margin-bottom: 0;
        }

    .timeline span {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        color: #fff;
        background: rgba(255,255,255,.18);
        border: 2px solid rgba(255,255,255,.25);
        z-index: 2;
    }

    .timeline li.completed span {
        background: #18b56b;
        border-color: #18b56b;
    }

    .timeline li.active span {
        background: var(--primary);
        border-color: var(--primary);
        box-shadow: 0 0 25px rgba(109,61,247,.5);
    }

    .timeline div {
        margin-left: 18px;
    }

    .timeline h6 {
        color: #fff;
        margin-bottom: 3px;
        font-size: 13px;
        font-weight: 600;
    }

    .timeline small {
        color: rgba(255,255,255,.72);
    }

/*====================================================
    BANK DETAILS
====================================================*/

.bank-details {
    margin-top: 0;
}

    .bank-details h4 {
        color: #fff;
        margin-bottom: 4px;
        font-size: 18px;
        font-weight: 600;
    }

    .bank-details p {
        color: rgba(255,255,255,.75);
        margin-bottom: 8px;
        font-size: 13px;
    }

.bank-card {
    position: relative;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.15);
    backdrop-filter: blur(18px);
    border-radius: 10px;
    padding: 20px 20px;
    transition: .35s;
    display: flex;
    height: 100%;
    grid-auto-flow: column;
    flex-wrap: wrap;
}

    .bank-card:hover {
        transform: translateY(-6px);
        background: rgba(255,255,255,.18);
    }

    .bank-card > i {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        color: var(--primary);
        font-size: 15px;
        margin-bottom: 10px;
    }

    .bank-card label {
        color: #b8b9bb;
        display: block;
        margin-bottom: 6px;
        font-size: 13px;
    }

    .bank-card h6 {
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        margin: 0;
        padding-right: 32px;
    }

.copy-btn {
    position: absolute;
    top: 7px;
    right: 10px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 10px;
    background: #fff;
    color: var(--primary);
    transition: .3s;
}

    .copy-btn:hover {
        background: var(--primary);
        color: #fff;
    }

/*====================================================
    SECURITY BOX
====================================================*/

.payment-footer {
    margin-top: 40px;
}

.security-box {
    display: flex;
    align-items: flex-start;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.15);
    backdrop-filter: blur(20px);
    border-radius: 22px;
    padding: 24px;
}

    .security-box .icon {
        width: 65px;
        height: 65px;
        border-radius: 18px;
        background: #fff;
        color: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        margin-right: 20px;
    }

    .security-box h5 {
        color: #fff;
        margin-bottom: 8px;
    }

    .security-box p {
        color: rgba(255,255,255,.80);
        margin-bottom: 18px;
        line-height: 1.7;
    }

.payment-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

    .payment-icons img {
        width: 54px;
        background: #fff;
        padding: 6px;
        border-radius: 10px;
    }

/*====================================================
    REGISTER CARD
====================================================*/

.register-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 15px;
    height: 90vh;
    box-shadow: 0 20px 70px rgba(0,0,0,.12);
}

.logo {
    /* height: 60px; */
    width: 90px;
        margin-bottom: 15px;
}

.register-card h2 {
    font-size: 20px;
    font-weight: 700;
    color: #2f3552;
    margin-bottom: 5px;
}

.register-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: #2f3552;
    margin-bottom: 10px;
}


.sub-text {
    color: #7a8097;
    margin-bottom: 5px;
    line-height: 1.5;
    font-size: 14px;
}

/*====================================================
    FORM SECTIONS
====================================================*/

.form-section {
    margin-bottom: 40px;
}

.section-title {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    color: #2f3552;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ececf5;
}

    .section-title i {
        width: 45px;
        height: 45px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg,var(--primary),var(--primaryDark));
        color: #fff;
        margin-right: 15px;
    }

/*====================================================
    INPUTS
====================================================*/

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #555b75;
    margin-bottom: 8px;
}

.custom-input {
    border: 1px solid #e6e8f3;
    border-radius: 14px;
    overflow: hidden;
    transition: .3s;
}

    .custom-input:hover {
        border-color: var(--primary);
    }

    .custom-input:focus-within {
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(109,61,247,.12);
    }

    .custom-input .input-group-text {
        background: #fff;
        border: none;
        color: var(--primary);
        min-width: 55px;
        justify-content: center;
    }

    .custom-input .form-control,
    .custom-input .form-select {
        border: none;
        box-shadow: none;
        min-height: 54px;
        font-size: 15px;
    }

textarea.form-control {
    min-height: 110px;
    resize: none;
}

/*====================================================
    PURPLE BUTTON
====================================================*/

.btn-purple {
    background: linear-gradient(135deg,var(--primary),var(--primaryDark));
    color: #fff;
    border: none;
    border-radius: 14px;
    height: 54px;
    font-weight: 600;
    transition: .35s;
}

    .btn-purple:hover {
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(109,61,247,.28);
    }

/*====================================================
    UPLOAD CARD
====================================================*/

.upload-card {
    background: #fbfbff;
    border: 2px dashed #d8dcf5;
    border-radius: 24px;
    padding: 35px;
    text-align: center;
    transition: .35s;
}

    .upload-card:hover {
        border-color: var(--primary);
        background: #f7f4ff;
    }

.upload-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--primary),var(--primaryDark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 20px;
}

.upload-card h4 {
    font-weight: 700;
    color: #2f3552;
    margin-bottom: 10px;
}

.upload-card p {
    color: #7d849b;
    margin-bottom: 30px;
}

.upload-area {
    display: block;
    cursor: pointer;
}

    .upload-area div {
        padding: 40px 20px;
        border-radius: 20px;
        background: #fff;
        transition: .3s;
    }

    .upload-area:hover div {
        transform: translateY(-4px);
        box-shadow: 0 15px 40px rgba(0,0,0,.08);
    }

    .upload-area i {
        font-size: 48px;
        color: var(--primary);
        margin-bottom: 15px;
    }

    .upload-area h5 {
        font-weight: 600;
        margin-bottom: 8px;
    }

    .upload-area span {
        display: block;
        color: var(--primary);
        font-weight: 600;
        margin-bottom: 8px;
    }

    .upload-area small {
        color: #888;
    }

/*====================================================
    PAYMENT INFO
====================================================*/

.info-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    text-align: center;
    padding: 25px;
    transition: .3s;
    height: 100%;
}

    .info-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 35px rgba(0,0,0,.08);
    }

    .info-box i {
        font-size: 30px;
        color: var(--primary);
        margin-bottom: 15px;
    }

    .info-box h6 {
        color: #666;
        margin-bottom: 8px;
    }

    .info-box h4 {
        color: var(--primary);
        font-weight: 700;
    }

    .info-box small {
        color: #888;
    }

/*====================================================
    TERMS
====================================================*/

.terms-card {
    background: #fafbff;
    border: 1px solid #ebeef9;
    border-radius: 18px;
    padding: 22px;
}

.form-check-input {
    width: 22px;
    height: 22px;
    margin-top: 2px;
}

.form-check-label {
    padding-left: 8px;
    color: #555;
    line-height: 1.8;
}

    .form-check-label a {
        color: var(--primary);
        font-weight: 600;
    }

/*====================================================
    REGISTER BUTTON
====================================================*/

.btn-register {
    width: 100%;
    height: 62px;
    border: none;
    border-radius: 18px;
    background: linear-gradient(135deg,var(--primary),var(--primaryDark));
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    transition: .35s;
}

    .btn-register:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 45px rgba(109,61,247,.30);
    }

/*====================================================
    SIGN IN
====================================================*/

.signin-box {
    margin-top: 30px;
    text-align: center;
    color: #666;
}

    .signin-box a {
        color: var(--primary);
        font-weight: 700;
    }

/*====================================================
    FOOTER
====================================================*/

.secure-footer {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #ececf5;
    flex-wrap: wrap;
}

    .secure-footer div {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #666;
        font-size: 14px;
    }

    .secure-footer i {
        color: var(--primary);
    }

/*====================================================
    ANIMATIONS
====================================================*/

.register-card {
    animation: fadeUp .8s ease;
}

.payment-panel {
    animation: fadeLeft .8s ease;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeLeft {

    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/*====================================================
    SCROLLBAR
====================================================*/

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: #4043e3;
    border-radius: 20px;
}

::-webkit-scrollbar-track {
    background: #ececf5;
}

/*====================================================
    RESPONSIVE
====================================================*/

@media (max-width:1200px) {

    .register-card {
        padding: 35px;
    }

    .payment-panel {
        padding: 20px;
    }

    .qr-image {
        width: 100%;
        /* height: 200px; */
    }
}

@media (max-width:991px) {

    .payment-panel {
        margin-bottom: 40px;
    }

    .register-card {
        margin-top: 20px;
    }

    .secure-footer {
        justify-content: flex-start;
        gap: 15px;
    }
}

@media (max-width:768px) {

    .register-page {
        padding: 20px 0;
    }

    .payment-panel {
        padding: 10px;
    }

    .register-card {
        padding: 25px;
        border-radius: 15px;
    }

    .payment-panel h2 {
        font-size: 32px;
    }

    .section-title {
        font-size: 18px;
    }

    .amount-box {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .timeline::before {
        left: 18px;
    }

    .bank-card {
        margin-bottom: 15px;
    }
}

@media (max-width:576px) {

    .register-card {
        padding: 18px;
        height: auto;
    }

    .logo {
        height: 55px;
    }

    .upload-icon {
        width: 70px;
        height: 70px;
        font-size: 26px;
    }

    .btn-register {
        height: 56px;
        font-size: 16px;
    }

    .payment-panel h2 {
        font-size: 28px;
    }

    .secure-footer {
        flex-direction: column;
        align-items: center;
    }

    .info-box {
        margin-bottom: 15px;
    }
}

.uploadLabel span {
    font-size: 8px;
    color: #606060;
    line-height: 15px;
}
