@charset 'UTF-8';

@import url("https://fonts.googleapis.com/css?family=Nanum+Gothic:400,700");
@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,800");
@import url("https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.8.2/css/all.min.css");

:root {
	--bg-top: #f6f1e7;
	--bg-bottom: #dce7f6;
	--surface: rgba(255, 255, 255, 0.92);
	--surface-strong: #ffffff;
	--surface-soft: #f6f8fc;
	--line: rgba(17, 43, 91, 0.1);
	--line-strong: rgba(17, 43, 91, 0.18);
	--text: #18263f;
	--muted: #61708b;
	--primary: #154c79;
	--primary-strong: #0d365b;
	--accent: #e79a2f;
	--accent-soft: #fff2de;
	--shadow-lg: 0 28px 70px rgba(17, 43, 91, 0.14);
	--shadow-md: 0 14px 34px rgba(17, 43, 91, 0.1);
	--radius-xl: 28px;
	--radius-lg: 20px;
	--radius-md: 14px;
}

html {
	font-size: 16px;
	min-height: 100%;
	background: var(--bg-bottom);
}

body,
input,
select,
option,
textarea,
button {
	font-family: "Poppins", "Nanum Gothic", sans-serif;
	font-size: 15px;
}

body {
	min-height: 100vh;
	margin: 0;
	padding: 24px 18px 48px;
	color: var(--text);
	background:
		radial-gradient(circle at top left, rgba(231, 154, 47, 0.16), transparent 24%),
		radial-gradient(circle at top right, rgba(21, 76, 121, 0.18), transparent 28%),
		linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
	background-size: 32px 32px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 70%);
	opacity: 0.45;
}

a {
	color: var(--primary);
}

table,
tr,
td {
	word-break: keep-all;
}

input,
select,
textarea {
	width: 100%;
	max-width: 100%;
	min-height: 44px;
	padding: 10px 14px;
	border: 1px solid var(--line-strong);
	border-radius: 12px;
	background: #fff;
	color: var(--text);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
	outline: none;
	border-color: rgba(21, 76, 121, 0.45);
	box-shadow: 0 0 0 4px rgba(21, 76, 121, 0.12);
}

select {
	appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, var(--primary) 50%),
		linear-gradient(135deg, var(--primary) 50%, transparent 50%);
	background-position:
		calc(100% - 18px) calc(50% - 3px),
		calc(100% - 12px) calc(50% - 3px);
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	padding-right: 34px;
}

button {
	min-height: 48px;
	padding: 10px 22px;
	border: 0;
	border-radius: 999px;
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.01em;
	background: linear-gradient(135deg, var(--primary), var(--primary-strong));
	box-shadow: 0 12px 24px rgba(13, 54, 91, 0.24);
	transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

button:hover {
	transform: translateY(-1px);
	box-shadow: 0 16px 30px rgba(13, 54, 91, 0.28);
}

button:disabled {
	background: linear-gradient(135deg, #93a4bc, #7f91ab);
	box-shadow: none;
	opacity: 0.85;
}

button:focus {
	outline: none;
	box-shadow: 0 0 0 4px rgba(21, 76, 121, 0.14), 0 16px 30px rgba(13, 54, 91, 0.25);
}

div.text {
	overflow: auto;
	padding: 16px;
	box-sizing: border-box;
	height: 220px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background-color: var(--surface-soft);
}

div.text h3 {
	margin: 0;
	line-height: 1.6;
	color: var(--text);
	font-size: 14px;
	font-weight: 600;
}

div.text h3:not(:first-of-type) {
	margin-top: 16px;
}

div.text p,
div.text ol li {
	line-height: 1.6;
	color: var(--muted);
	font-size: 13px;
}

div.text ol {
	padding-left: 18px;
}

div.text ol ol {
	padding-left: 18px;
}

#container label {
	display: block;
	line-height: 1.5;
	color: var(--text);
	font-size: 13px;
	cursor: pointer;
}

#container label.bold {
	font-weight: bold;
}

#container label input[type="checkbox"] {
	display: none;
}

#container label input[type="checkbox"]:checked ~ figure.checkbox {
	background-image: url("./img/register.agreement.checkbox.checked.png");
}

#container label figure.checkbox {
	display: inline-block;
	margin: 4px 8px 0 0;
	width: 14px;
	height: 14px;
	background-image: url("./img/register.agreement.checkbox.unchecked.png");
	background-size: 14px 14px;
	vertical-align: top;
}

.center {
	text-align: center;
}

.left {
	text-align: left;
}

.blueFont {
	color: var(--primary);
	font-weight: 700;
}

#topDiv {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: start;
	gap: 18px;
	max-width: 980px;
	margin: 0 auto 18px;
	padding: 18px 22px;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(14px);
	box-shadow: var(--shadow-md);
}

.topDivCopy {
	min-width: 0;
	text-align: center;
	align-self: center;
}

#ipsosLogo,
#samsaLogo {
	position: static;
	display: block;
	max-width: 100%;
	align-self: start;
}

#ipsosLogo {
	width: 62px;
}

#samsaLogo {
	width: 104px;
	justify-self: end;
}

#ham {
	display: none;
}

#titleS,
#titleL {
	display: block;
}

#titleS {
	color: var(--muted);
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

#titleL {
	margin-top: 4px;
	color: var(--primary);
	font-size: clamp(1.35rem, 2vw, 2.05rem);
	line-height: 1.15;
	font-weight: 800;
}

#mainBody {
	position: relative;
	max-width: 980px;
	margin: 0 auto;
	padding: 26px 22px 34px;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: var(--radius-xl);
	background: var(--surface);
	box-shadow: var(--shadow-lg);
	backdrop-filter: blur(12px);
}

.wrapper {
	width: 100%;
	max-width: 860px;
	margin: 0 auto;
	padding: 6px 0;
}

form > .wrapper.center:first-child {
	margin-bottom: 6px;
}

form > .wrapper.center:first-child h3 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 72px;
	margin: 0;
	padding: 10px 28px;
	border-radius: 24px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(242, 246, 252, 0.9));
	box-shadow: 0 18px 36px rgba(17, 43, 91, 0.12);
	color: var(--primary);
	font-size: clamp(1.9rem, 3vw, 2.7rem);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.03em;
}

.wrapper_border {
	display: grid;
	grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
	gap: 18px;
	align-items: center;
	margin-top: 12px;
	padding: 22px 24px;
	border: 1px solid var(--line);
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 248, 252, 0.94));
	box-shadow: 0 10px 26px rgba(17, 43, 91, 0.05);
}

.no_border_bottom {
	border-bottom: 1px solid var(--line);
}

.div_title {
	display: block;
	width: auto;
	padding: 2px 0 0;
	font-weight: 700;
	color: var(--text);
	font-size: 1.18rem;
	line-height: 1.5;
	letter-spacing: -0.02em;
}

.div_input {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 12px;
	width: auto;
	min-width: 0;
}

.div_input > input[type="text"],
.div_input > input[type="password"],
.div_input > input[type="tel"],
.div_input > select,
.div_input > button {
	margin-right: 8px;
	margin-bottom: 8px;
}

.div_input > input[type="text"],
.div_input > input[type="password"],
.div_input > input[type="tel"]:not(.input_tel),
.div_input > select {
	width: min(100%, 352px);
}

.div_agree {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	align-content: flex-start;
	gap: 12px;
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

.radioWrapper {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-width: 112px;
	min-height: 58px;
	margin: 0;
	padding: 10px 18px;
	border: 1px solid rgba(21, 76, 121, 0.12);
	border-radius: 18px;
	background: linear-gradient(180deg, #ffffff, #f7faff);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
	vertical-align: middle;
	cursor: pointer;
	transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

input.radio1,
input.radio2,
input.radio3 {
	margin: 0;
	width: 24px;
	min-width: 24px;
	height: 24px;
	min-height: 24px;
	padding: 0;
	border: 1.5px solid rgba(24, 38, 63, 0.38);
	border-radius: 50%;
	background: #fff;
	box-shadow: none;
	appearance: none;
	-webkit-appearance: none;
	position: relative;
	flex: 0 0 auto;
	cursor: pointer;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

input.radio1::after,
input.radio2::after,
input.radio3::after {
	content: "";
	position: absolute;
	inset: 4px;
	border-radius: 50%;
	background: var(--primary);
	transform: scale(0);
	transition: transform 0.18s ease;
}

input.radio1:checked,
input.radio2:checked,
input.radio3:checked {
	border-color: rgba(21, 76, 121, 0.72);
	box-shadow: 0 0 0 5px rgba(21, 76, 121, 0.12);
}

input.radio1:checked::after,
input.radio2:checked::after,
input.radio3:checked::after {
	transform: scale(1);
}

.radioWrapper:has(input[type="radio"]:checked) {
	border-color: rgba(21, 76, 121, 0.32);
	background: linear-gradient(180deg, #ffffff, rgba(226, 237, 248, 0.95));
	box-shadow: 0 14px 26px rgba(21, 76, 121, 0.12);
	transform: translateY(-1px);
}

.label1,
.label2,
.label3 {
	margin: 0;
	vertical-align: middle;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.35;
	color: var(--text);
	word-break: keep-all;
	cursor: pointer;
}

.input_text {
	text-align: left;
	width: min(100%, 352px) !important;
}

.input_tel {
	display: inline-block;
	width: 92px;
	text-align: center;
}

.phone_input {
	gap: 10px 12px;
}

.phone_inline {
	display: inline-flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

.phone_inline .input_tel {
	margin: 0;
}

.phone_inline input[name="userPhone1"] {
	width: 64px !important;
	min-width: 64px;
	flex: 0 0 64px;
}

.phone_inline input[name="userPhone2"],
.phone_inline input[name="userPhone3"] {
	width: 78px !important;
	min-width: 78px;
	flex: 0 0 78px;
}

.phone_dash {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 10px;
	color: var(--text);
	font-weight: 600;
	flex: 0 0 10px;
}

#start,
#submitBtn {
	min-width: 220px;
	margin: 28px auto 0;
}

#checkPhone {
	min-width: 128px;
	padding-left: 18px;
	padding-right: 18px;
}

#txtRequiredTel,
#txtRequiredPW,
#txtRequiredPWCheck {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	font-size: 0.95rem;
	font-weight: 700;
}

#txtRequiredTel {
	margin-left: 4px;
}

#container {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

#container > .wrapper {
	max-width: none;
	padding: 0;
}

.wrapper.center.wrapper_border {
	align-items: start;
}

.wrapper.center.wrapper_border .div_title.div_agree {
	padding-right: 8px;
}

.wrapper.center.wrapper_border .div_input.div_agree {
	justify-content: flex-start;
	padding-top: 26px;
}

.agree_section {
	grid-template-columns: 1fr;
	gap: 18px;
	align-items: stretch;
	padding: 28px 28px 24px;
}

.agree_section #container {
	gap: 18px;
	text-align: left;
}

.agree_section #container > .wrapper {
	display: block;
	text-align: left;
}

.agree_section #container > .wrapper.center {
	text-align: left;
}

.agree_section #container > .wrapper.center:first-child {
	margin-bottom: 0;
}

.agree_section #container > .wrapper.center:first-child h3,
.agree_section #container > .wrapper.center:first-child {
	display: block;
	width: 100%;
	min-height: 0;
	padding: 0;
	background: none;
	box-shadow: none;
	border-radius: 0;
	color: var(--text);
	font-size: 1.65rem;
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: -0.03em;
}

.agree_section .div_title.div_agree {
	padding-right: 0;
}

.agree_section .text {
	height: 260px;
	padding: 18px 18px 16px;
	border: 1px solid rgba(21, 76, 121, 0.12);
	border-radius: 22px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 252, 0.96));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.agree_section .text .tb {
	margin: 14px 0;
}

.agree_section .text::-webkit-scrollbar {
	width: 10px;
}

.agree_section .text::-webkit-scrollbar-thumb {
	border: 2px solid rgba(255, 255, 255, 0.85);
	border-radius: 999px;
	background: rgba(21, 76, 121, 0.35);
}

.agree_actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	justify-content: stretch;
	align-items: stretch;
	gap: 12px;
	padding: 0;
	width: 100%;
}

.agree_actions > span:not(.radioWrapper) {
	display: none;
}

.agree_actions .radioWrapper {
	width: 100%;
	min-width: 0;
	justify-content: center;
	padding: 16px 18px;
	border-radius: 22px;
}

.agree_actions .label1,
.agree_actions .label2,
.agree_actions .label3 {
	font-size: 1.12rem;
}

#userRoute .div_input {
	display: grid;
	grid-template-columns: minmax(130px, 0.9fr) minmax(200px, 1.4fr);
	gap: 10px 12px;
}

#userRoute .div_input input {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
}

.tb {
	width: 100%;
}

.tb,
.tb td,
.tb th {
	border-collapse: collapse;
	border: 1px solid var(--line);
}

.tb td,
.tb th {
	padding: 10px 12px;
	background: rgba(255, 255, 255, 0.75);
}

.tb ul {
	padding-left: 22px;
	margin-bottom: 0;
}

div.div_info {
	padding: 0 0 6px;
	line-height: 1.7;
	color: var(--text);
}

.landing-page {
	padding-top: 16px;
}

.landing-shell {
	position: relative;
	overflow: hidden;
	max-width: 1120px;
	min-height: 720px;
	padding: 44px;
	background:
		linear-gradient(115deg, rgba(12, 48, 83, 0.92), rgba(25, 89, 138, 0.82)),
		url('../img/intro_1080.png') center/cover no-repeat;
	border-radius: 34px;
	box-shadow: var(--shadow-lg);
}

.landing-shell::before,
.landing-shell::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	pointer-events: none;
}

.landing-shell::before {
	width: 360px;
	height: 360px;
	top: -110px;
	right: -70px;
	background: radial-gradient(circle, rgba(231, 154, 47, 0.36), transparent 68%);
}

.landing-shell::after {
	width: 280px;
	height: 280px;
	left: -80px;
	bottom: -120px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 68%);
}

.landing-panel {
	position: relative;
	z-index: 1;
	max-width: 520px;
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 28px;
	background: rgba(10, 28, 49, 0.34);
	backdrop-filter: blur(12px);
	color: #fff;
	text-align: left;
}

.landing-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	font-size: 0.84rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.landing-title {
	margin: 0;
	font-size: clamp(2rem, 5vw, 3.6rem);
	line-height: 1.02;
	font-weight: 800;
}

.landing-title span {
	display: block;
	color: #ffd79f;
}

.landing-copy {
	margin: 20px 0 0;
	font-size: 1rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9);
}

.landing-meta {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 28px;
}

.landing-meta-item {
	padding: 14px 16px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.12);
}

.landing-meta-item strong {
	display: block;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.72);
}

.landing-meta-item span {
	display: block;
	margin-top: 4px;
	font-size: 1rem;
	font-weight: 700;
}

.landing-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.landing-btn,
.landing-btn-secondary {
	min-width: 220px;
	padding: 14px 24px;
}

.landing-btn {
	background: linear-gradient(135deg, var(--accent), #d07a11);
	box-shadow: 0 14px 28px rgba(215, 131, 29, 0.28);
}

.landing-btn-secondary {
	background: rgba(255, 255, 255, 0.14);
	box-shadow: none;
}

.landing-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.22);
	box-shadow: none;
}

.result-shell {
	max-width: 900px;
	margin: 0 auto;
	padding: 20px;
}

.result-card {
	overflow: hidden;
	border-radius: 28px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 252, 0.94));
	box-shadow: var(--shadow-lg);
}

.result-card img {
	display: block;
	width: 100%;
	height: auto;
}

@media only screen and (max-width: 900px) {
	body {
		padding: 16px 12px 32px;
	}

	#topDiv,
	#mainBody {
		padding-left: 16px;
		padding-right: 16px;
	}

	.wrapper_border {
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 18px;
	}

	.div_title {
		font-size: 1.04rem;
	}

	.div_input {
		gap: 10px;
	}

	.div_input > input[type="text"],
	.div_input > input[type="password"],
	.div_input > input[type="tel"]:not(.input_tel),
	.div_input > select {
		width: 100%;
		max-width: none;
	}

	.wrapper.center.wrapper_border .div_input.div_agree {
		padding-top: 0;
	}

	.agree_section {
		grid-template-columns: 1fr;
		padding: 20px;
	}

	.agree_actions {
		padding-top: 0;
		grid-template-columns: 1fr;
	}

	.phone_input {
		gap: 10px;
	}

	.phone_inline {
		width: 100%;
	}

	.landing-shell {
		min-height: auto;
		padding: 24px;
	}

	.landing-meta {
		grid-template-columns: 1fr;
	}
}

@media only screen and (max-width: 640px) {
	body {
		padding: 12px 10px 24px;
	}

	#topDiv {
		grid-template-columns: 48px 1fr 74px;
		gap: 10px;
		margin-bottom: 12px;
		padding: 14px 14px;
		border-radius: 20px;
	}

	#ipsosLogo {
		width: 48px;
	}

	#samsaLogo {
		width: 74px;
	}

	#titleS {
		font-size: 0.72rem;
		letter-spacing: 0.03em;
	}

	#titleL {
		font-size: 1.18rem;
	}

	#mainBody {
		padding: 16px 10px 22px;
		border-radius: 22px;
	}

	.wrapper {
		padding: 4px 0;
	}

	.wrapper_border {
		margin-top: 8px;
		padding: 16px 14px;
		border-radius: 16px;
	}

	.div_title {
		font-size: 0.95rem;
	}

	form > .wrapper.center:first-child h3 {
		width: 100%;
		min-height: 64px;
		padding: 12px 18px;
		font-size: 1.7rem;
	}

	.radioWrapper {
		min-width: 0;
		width: 100%;
		min-height: 56px;
		justify-content: center;
		padding: 12px 14px;
	}

	.agree_section #container > .wrapper.center:first-child h3,
	.agree_section #container > .wrapper.center:first-child {
		font-size: 1.28rem;
	}

	.agree_actions .radioWrapper {
		width: 100%;
		justify-content: flex-start;
	}

	#userRoute .div_input {
		grid-template-columns: minmax(100px, 0.82fr) minmax(150px, 1.18fr);
		gap: 8px 10px;
	}

	.div_input > input[type="text"],
	.div_input > input[type="password"],
	.div_input > input[type="tel"],
	.div_input > select,
	.div_input > button {
		margin-bottom: 8px;
		margin-right: 0;
	}

	.div_input > input[type="text"],
	.div_input > input[type="password"],
	.div_input > input[type="tel"]:not(.input_tel),
	.div_input > select,
	.div_input > button {
		width: 100% !important;
	}

	.div_input > span:not(.radioWrapper) {
		width: 100%;
	}

	#start,
	#submitBtn {
		width: 100% !important;
	}

	#checkPhone {
		width: 100% !important;
	}

	div.text {
		height: 260px;
		padding: 12px;
	}

	.agree_section {
		padding: 18px 14px 16px;
	}

	.agree_section .text {
		height: 240px;
		padding: 14px 14px 12px;
		border-radius: 18px;
	}

	.landing-panel {
		padding: 22px 18px;
		border-radius: 22px;
	}

	.landing-copy {
		font-size: 0.94rem;
	}

	.landing-actions {
		flex-direction: column;
	}

	.landing-btn,
	.landing-btn-secondary {
		width: 100%;
		min-width: 0;
	}

	.result-shell {
		padding: 8px 0 0;
	}
}

@media only screen and (max-width: 480px) {
	body {
		padding: 10px 8px 20px;
	}

	#topDiv {
		grid-template-columns: 42px 1fr 64px;
		padding: 12px 12px;
	}

	#ipsosLogo {
		width: 42px;
	}

	#samsaLogo {
		width: 64px;
	}

	#mainBody {
		padding: 14px 8px 20px;
		border-radius: 18px;
	}

	.wrapper_border {
		padding: 14px 12px;
		border-radius: 14px;
	}

	form > .wrapper.center:first-child h3 {
		min-height: 58px;
		padding: 10px 14px;
		font-size: 1.38rem;
	}

	.div_title {
		font-size: 0.92rem;
	}

	.radioWrapper {
		min-height: 52px;
		padding: 10px 12px;
		border-radius: 14px;
	}

	.label1,
	.label2,
	.label3 {
		font-size: 0.95rem;
	}

	#userRoute .div_input {
		grid-template-columns: minmax(86px, 0.8fr) minmax(132px, 1.2fr);
		gap: 8px;
	}

	.phone_inline {
		gap: 6px;
	}

	.phone_inline input[name="userPhone1"] {
		width: 56px !important;
		min-width: 56px;
		flex-basis: 56px;
	}

	.phone_inline input[name="userPhone2"],
	.phone_inline input[name="userPhone3"] {
		width: 68px !important;
		min-width: 68px;
		flex-basis: 68px;
	}

	.phone_dash {
		width: 8px;
		flex-basis: 8px;
	}

	.agree_section #container > .wrapper.center:first-child h3,
	.agree_section #container > .wrapper.center:first-child {
		font-size: 1.12rem;
	}

	.agree_section .text {
		height: 220px;
		font-size: 13px;
	}

	.tb td,
	.tb th {
		padding: 8px 9px;
		font-size: 12px;
	}
}
