/* login 로그인 페이지 */
.login-wrap{
	width: 100%;
  height: auto;
  padding: 100px 20px;
  margin: 0 auto;
  box-sizing: border-box;
}
.login-container {
	width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 60px;
}
.login-header {
	height: 50px;
	margin-bottom: 30px;
	text-align: center;
}
.login-tab {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  gap: 0;
}
.tab-btn {
  flex: 1;
  padding: 14px 0;
  font-size: 16px;
  border: 1px solid #ccc;
  border-bottom: 1px solid #06b986;
  border-radius:10px 10px 0 0;
  color: #999;
  cursor: pointer;
  background-color: #f9f9f9;
  transition: all 0.2s ease-in-out;
}
.tab-btn.active {
  background-color: #fff;
  border: 1px solid #06b986;
  border-bottom: none;
  color: #0b8568;
  font-weight: 600;
 }
/* 입력 필드 스타일 */
.login-field {
  position: relative;
  margin-bottom: 15px;
}
.login-field input {
  width: 100%;
  height: 52px;
  padding: 12px 12px 0 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
  outline: none;
  background: transparent;   
}
.login-field input::placeholder {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
/* input이 포커스를 받으면 placeholder 보이기 */
.login-field input:focus::placeholder {
  opacity: 1;
}
/* 라벨 스타일 */
.login-field label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff
  padding: 0 5px;
  color: #aaa;
  font-size: 16px;
  transition: 0.3s;
  pointer-events: none;   
}
/* 입력 필드 클릭(포커스) 시 */
.login-field input:focus {
    border-color: #06b986;
  }
.login-field:has(input:focus),
.login-field:has(input:not(:placeholder-shown)),
.login-field:has(input:valid) {
  border-color: #06b986; 
}
.login-field:has(input:focus) label,
.login-field:has(input:not(:placeholder-shown)) label,
.login-field:has(input:valid) label {
  top: 15px;
  font-size: 11px;
  color: #999;
}
.login-btn {
	width: 100%;
  height: 56px;
  padding: 15px;
  margin: 2rem 0 1rem;
  background: #06b986;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  color: white;  
  cursor: pointer;
  transition: 0.3s;  
}
.login-btn:hover {
  background: #06b986;
}

.align-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  padding: 0;
  font-size: 14px;
}

.align-wrap li {
  display: inline-block;
}

.align-wrap li + li {
  margin-left: 8px;
}

/* 첫 번째 li는 왼쪽 고정 */
.align-wrap li:first-child {
  margin-right: auto;
  color: #333;
}

/* 구분선 스타일 */
.align-wrap .divider {
  color: #ccc;
  pointer-events: none;
}
/* SNS 로그인 스타일 */
.sns-title {
	margin:3rem 0 1rem;
  font-size: 13px;
  color: #777;
  text-align: center;
}
.sns-btn {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top:20px;
}
.tab-panel {
  display: none;
  width: 100%;
}
.tab-panel.active {
  display: block;
}

.grey_box {
	margin-top:20px;
	background-color: #f8f8f8;
	font-size: 13px;
	font-weight:400;
	text-align: left;
	padding: 20px;
	border-radius: 6px;
}
.grey_box p {
	font-size: 15px;
	font-weight:700;
}
/* 비회원 예약하기 */
.noMemberResv {
	width: 100%;
  height: 56px;
	margin: 3rem 0 6rem;
	border: 1px solid #ccc;
	border-radius: 6px;
	cursor: pointer;
	background-color: #fff;
	font-size: 16px;
	text-align: center;
}
.noMemberResv > a {
	position: relative;
	display: block;
	padding: 15px;
}

/* 상단 전체 래퍼 고정 */
/*.header_wrap {
  position: fixed;
  max-width: 760px;
  height:60px;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  margin: 0 auto;
  background-color: #fff;
  box-sizing: border-box;
}
.header {
  position: relative;
  height:60px;
  padding: 0 1.6rem;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}
.header h1.title {
  font-size: 20px;
  font-weight: 500;
  color: #111;
  height:100%;
  width: 100%;
  padding: 0 4rem;
  overflow: hidden;
  line-height: 60px;
  
}

.header .btn_prev {
  position: absolute;
  left: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  background: url('/images/arrow_back.svg') no-repeat center center / 80%;
  text-indent: -9999px;
  z-index: 10;
}
.header .top_btn_bundle {
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
}
.header .top_btn_bundle .btn_home {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background: url('/images/icon_home.svg') no-repeat center center / 80%;
  text-indent: -9999px;
}
*/
@media all and (max-width:480px) {
	.login-wrap {
		padding: 60px 20px;
	}
	.login-header{
		margin-bottom: 20px;
	}
	.sns-title {
	margin:2rem 0 1rem;
	}
	.noMemberResv {
		margin: 3rem 0 5rem;
	}
	.tab-btn {
		font-size: 15px;
	}
}