.find_wrap{
	max-width:420px;
	margin:50px auto;
	padding:30px;
	border:1px solid #e5e5e5;
	background:#fff;
	box-sizing:border-box;
	font-family:Arial,'Noto Sans KR',sans-serif;
}

.find_tab{
	display:flex;
	margin-bottom:25px;
	border:1px solid #065d92;
	overflow:hidden;
}

.find_tab_btn{
	flex:1;
	height:46px;
	border:0;
	background:#fff;
	color:#065d92;
	font-size:15px;
	font-weight:700;
	cursor:pointer;
}

.find_tab_btn.active{
	background:#065d92;
	color:#fff;
}

.find_box{
	display:none;
}

.find_box.active{
	display:block;
}

.find_title{
	margin-bottom:15px;
	font-size:22px;
	font-weight:800;
	text-align:center;
	color:#222;
}

.find_input{
	width:100%;
	height:48px;
	margin-bottom:10px;
	padding:0 14px;
	border:1px solid #ddd;
	font-size:15px;
	box-sizing:border-box;
	outline:none;
}

.find_input:focus{
	border-color:#065d92;
}

.find_btn{
	width:100%;
	height:50px;
	margin-top:8px;
	border:0;
	background:#065d92;
	color:#fff;
	font-size:16px;
	font-weight:700;
	cursor:pointer;
}

.find_btn:hover{
	background:#065d92;
}

.find_result{
	margin-top:18px;
	padding:14px;
	background:#f7f7f7;
	font-size:14px;
	line-height:1.6;
	text-align:center;
	color:#333;
	box-sizing:border-box;
}

.find_result:empty{
	display:none;
}

.find_success{
	color:#065d92;
	font-weight:700;
}

.find_error{
	color:#065d92;
	font-weight:700;
}

@media screen and (max-width:640px){
	.find_wrap{
		width:100%;
		margin:50px auto;
		padding:22px 18px;
		background:#fff;
		border:0;
		box-sizing:border-box;
		font-family:Arial,'Noto Sans KR',sans-serif;
	}

	.find_title{
		font-size:20px;
	}

	.find_input{
		height:46px;
		font-size:16px;
	}

	.find_btn{
		height:48px;
		font-size:15px;
	}
}