@charset "UTF-8";

#gaip_page {
	min-height: 100vh;
	background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 60%, #f7f9ff 100%);
	position: relative;
	overflow-x: hidden;
}

/* 내용이 배경 위로 */
#gaip_page main {
	position: relative;
	z-index: 1;
}


/* 상단 우측 home */
.gaip-top {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 30px;
}

.gaip-top a {
	text-decoration: none;
	color: #2d6cdf;
	font-size: 14px;
}




/* =========================
   제목 영역
========================= */
.gaip-title {
	text-align: center;
	margin-bottom: 40px;
}

.gaip-title h1 {
	font-size: 36px;
	margin: 0 0 10px;
}

.gaip-title .login-link {
	font-size: 14px;
	color: #555;
}

.gaip-title .login-link a {
	color: #2d6cdf;
	text-decoration: none;
}

/* =========================
   좌우 2컬럼
========================= */
.gaip-container {
	display: flex;
	gap: 60px;
}

.gaip-left,
.gaip-right {
	flex: 1;
}

/* 구분선 */
.gaip-right {
	border-left: 1px solid #ddd;
	padding-left: 60px;
}

/* =========================
   입력 폼
========================= */
.form-group {
	margin-bottom: 28px;
}

.form-group label {
	display: block;
	font-size: 15px;
	margin-bottom: 6px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
	width: 100%;
	height: 42px;
	border: none;
	border-bottom: 1px solid #999;
	font-size: 16px;
	padding: 4px 2px;
}

.form-group input:focus {
	outline: none;
	border-bottom: 2px solid #2d6cdf;
}

/* =========================
   안내 메시지
========================= */
.msg {
	font-size: 13px;
	margin-top: 6px;
}

.msg.ok {
	color: #2a9d3c;
}

.msg.err {
	color: #d93025;
}

.msg.help {
	color: #666;
	font-size: 12px;
}

/* =========================
   약관
========================= */
.agree-box {
	font-size: 14px;
}

.agree-box input {
	margin-right: 6px;
}

.agree-box a {
	color: #2d6cdf;
	text-decoration: none;
}

/* =========================
   가입 버튼
========================= */
.gaip-btn {
	width: 220px;
	height: 46px;
	border-radius: 24px;
	border: 1px solid #ccc;
	background-color: #fff;
	font-size: 16px;
	cursor: pointer;
	margin-top: 20px;
}

.gaip-btn:hover {
	background-color: #f4f6fa;
}

/* =========================
   간편 가입 영역
========================= */
.simple-join {
	text-align: center;
}

.simple-join h3 {
	font-size: 16px;
	margin-bottom: 20px;
}

.kakao-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;

	width: 100%;
	height: 48px;
	background-color: #fee500;
	border: none;
	cursor: pointer;
	font-size: 15px;
}

.kakao-btn img {
	width: 22px;
	height: 22px;
}

/* =========================
   반응형
========================= */
@media (max-width: 768px) {
	.gaip-container {
		flex-direction: column;
	}

	.gaip-right {
		border-left: none;
		padding-left: 0;
		margin-top: 40px;
	}
}

.kakao-join-img {
	width: 100;
	max-width: 320px;
	/* PC 최대 크기 */
	height: auto;
}

.gaip-card {
	border: 1px solid #e9ecef;
	border-radius: 16px;
	background: #fff;
}