
.form-wrap {
    padding: 10px 25px 25px 25px;
    max-width: 500px;
}

.main-img {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    width: 80%;
}

body.blur-background::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(11px);
    z-index: 9998;
    pointer-events: none;
}

.form-top {
    text-align: center;
    height: 100vh;
    padding: 20px 5px;
}




.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.business-card {
    width: 380px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from {
        transform: scale(0.8) translateY(-30px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.card-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 80px;
}

.card-logo {
    height: 60px;
    object-fit: contain;
}

.card-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

    .card-close:hover {
        background: rgba(255, 255, 255, 0.3);
    }

.card-body {
    padding: 35px 25px;
    text-align: center;
}

.card-name {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 700;
    color: #1e3c72;
    letter-spacing: 0.5px;
}

.card-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #2a5298 0%, #1e3c72 100%);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.card-info {
    text-align: left;
}

.info-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 14px;
}

.info-label {
    font-weight: 600;
    color: #2a5298;
    margin-right: 12px;
    min-width: 90px;
}

.info-value {
    color: #333;
    word-break: break-word;
    flex: 1;
}

.card-footer {
    background: #f0f4f8;
    padding: 15px 25px;
    text-align: center;
    border-top: 2px solid #e0e6f2;
}

.card-message {
    margin: 0;
    font-size: 14px;
    color: #2a5298;
    font-weight: 600;
}

.card-num {
    font-size: 16px; 
    position: absolute;
    top: 6px;
    left: 15px;
}


.card-num-lbl {
    font-weight: bold;
    font-family: math;
}

.card-num-val {
    background-color: #ffff71;
    font-weight: bold;
    padding: 2px 6px;
    text-transform: uppercase;
}
