 .bpm-popup {
    position: fixed;
    inset: 0;
    background: #fff;
    display: none;
    z-index: 9999999;
}

.bpm-card-wrap {
    background: #f9f9f9;
    width: 850px;
    max-width: 90%;
    margin: 10% auto;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
}
.bpm-card{
   display: flex;
}
.bpm-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.bpm-header img {
    height: 40px;
}

.bpm-btn {
    color: #1e5eff;
    text-decoration: none;
    font-weight: 500;
    background: #1e3576;
} 

/* Left panel */
.left-panel {
    width: 55%;	
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    background: linear-gradient(180deg, #1E3576 -24.83%, #54D4B5 142.91%);
}

.left-panel .intro {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
}

/* Right panel */
.right-panel {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    padding: 40px;
}

.right-panel .logo-old img{
    width: 160px;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #555;
    transition: background 0.2s;
    z-index: 10;
    display: none;
}

.close-btn:hover { background: #fff; }

.bpm-popup{
    background: #000000ba;
}
.bpm-card h2{
	font-size: 24px;
	line-height: 32px;
	font-weight: 600;
	color: #fff;
	margin: 0 64px;
	margin-bottom: 20px
}
.bpm-card p{
	font-size: 18px;
	font-weight: 400;
	color: #fff;
  margin: 0 0 14px 0;
}
.bpm-card h3{
	padding: 12px 0 20px;
	margin-bottom: 24px;
	border-bottom: 1px solid #ffffff8f;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
}

.bpm-btn{
	color: #fff;
	width: 100%;
	display: block;
	padding: 10px;
	border-radius: 8px
}
.bpm-btn:hover{
	color: #fff;
}
.continue-btn{
	color: #fff;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 6px;
}
.continue-btn:hover{
	color: #fff;
}


@media(max-width: 576px){
    .bpm-card{
      flex-direction: column-reverse;
}
.left-panel{
  width: 100%;
  padding: 28px 20px 28px 20px;
  gap: 4px;
}
.right-panel{
  width: 100%;
  padding: 28px 20px 28px 20px;
}
.right-panel .icon img{
   width: 40px;	
}

.bpm-card h2{
    margin: 0px 8px;
    margin-bottom: 14px;	
}
.bpm-card p{
    font-size: 16px;
    margin: 0 0 12px 0;
}
.bpm-card h3{
        padding: 0px 0 9px;
        margin-bottom: 4px;	
}
.bpm-btn{
  padding: 8px;	
}

}
 