﻿.e_popup-overlay {
display: none; 
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-color: rgba(0, 0, 0, 0.6); 
z-index: 1000;
justify-content: center;
align-items: center;
z-index: 999;
}

.e_popup {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: white;
z-index: 1000;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
border-radius: 10px;
}

body.no-scroll {
overflow: hidden;
}

.e_popup .popup_header {
	display: flex;
	justify-content: flex-end;
}

.e_popup .popup_footer {
	display: flex;
	justify-content: center;
	align-items: center;
}
.e_popup .close_popup {
	width: 50px;
	height: 50px;
	background-color: transparent;
	border: none;
	cursor: pointer;
}

.e_popup .close_popup::before {
content: "\00d7";
font-size: 35px; 
color: #b8b8b8;
}

.e_popup .popup_content {
	width: 540px;
	height: fit-content;
	text-align: center;
}

.e_popup .popup_content .e_title {
	color: #fd1e94;
	font-size: 30px;
	font-weight: 600;
	margin-top: 0;
}

.e_popup .popup_content .e_info {
	background-color: #f5f5f5;
	padding: 15px;
	font-weight: 500;
	text-align: left;
	margin: 20px 50px 0px 50px;
}

.e_popup .popup_content .e_info p {
	margin: 0;
}

.e_popup .popup_content input[type="text"]{
	height: 50px;
	width: 195px;
	border: none;
	font-family: 'Pretendard';
	font-size: 20px; 
	color: #474747;
	caret-color: transparent;
	padding-left: 20px;
}

.e_popup .popup_content .input-wrapper {
display: flex;
margin: 20px 0 40px 0;
justify-content: center;
align-items: center;
gap: 10px;
}

.e_popup .popup_content .input-wrapper.has-text .caret {
display: none;
}

.e_popup .popup_content .input-wrapper .input-key {
	display: flex;	
	border: 1px solid #ffa2d1;
	margin-bottom: 10px;
}

.e_popup .popup_content .input-wrapper .input-key p{
	background-color: #ffa2d1;
	padding: 0 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	font-weight: 600;
}

.e_popup .popup_content .caret {
position: relative;
top: 11px;
right: 71%;
transform: translateX(-50%);
width: 2px;
height: 30px;
background-color: #575757;
animation: blink 1s steps(1) infinite;
pointer-events: none;
z-index: 2;
}

@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}

.e_popup .popup_content input::placeholder {
	color: #00000050;
	font-size: 30px;    
	font-weight: 600;
	position: relative;
	bottom: 2px;
}

.e_popup .popup_content .e_submit {
	width: 150px;
	height: 118px;
	position: relative;
	bottom: 5px;
	background-color: #474747;
	color: #fff;
	border: none;
	font-size: 18px;
	font-weight: 500;
	cursor: pointer;
}

.e_popup .popup_content .e_submit:active {
	transform: translateY(2px);
}

.e_popup .popup_content .e_submit span{
	font-size: 15px;
	font-weight: 600;
}