﻿
.required-asterisk {
    color: #dc3545;
}

.radio-group {
    display: flex;
    gap: 30px;
    margin-top: 8px;
}

.verify-input--uppercase {
    text-transform: uppercase;
}

.verify-input--readonly {
    background-color: #f5f5f5;
    cursor: not-allowed;
    pointer-events: none;
}

.input-hint {
    color: #7d7d7d;
    font-size: 12px;
}

.ifsc-loading {
    margin-top: 10px;
}

.ifsc-loading__text {
    color: #007bff;
}

.validation-summary {
    margin-top: 10px;
}

.otp-countdown {
    line-height: 1.5;
}

.otp-resend {
    line-height: 1.5;
}

.otp-resend__button {
    font-size: 16px;
    font-family: Poppins, sans-serif;
    color: #d72f2f;
    text-align: left;
    margin: 0;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

    .popup-overlay.show {
        display: flex;
    }

.popup-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .popup-icon i {
        color: white;
        font-size: 30px;
    }

.popup-title {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.popup-message {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.popup-ok-button {
    color: blueviolet;
    border: none;
    border-radius: 8px;
    padding: 12px 40px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
}

    .popup-ok-button:disabled {
        background-color: #999;
        cursor: not-allowed;
    }

.create-account-hidden-button[hidden] {
    display: none;
}

.create-account-hidden-button:not([hidden]) {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 60px;
    background-color: #d72f2f;
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 15px 0;
}

.kyc-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0fa601;
    background-color: rgba(15, 166, 1, 0.06);
    color: #0fa601;
    font-size: 20px;
    margin-right: 12px;
}
