.input-container {
	width: 100%;
	font-size: 16px;
	color: #333333;
  margin-bottom: 24px;
}
.input-container > input {
	height: 54px;
	border: 1px solid #bbbbbb;
	outline: 0;
	border-radius: 8px;
	padding: 0 20px;
	font-size: 16px;
	font-family: 'Pretendard';
	cursor: text;
}
.input-text {
	width: 100%;
	height: auto;
	line-height: 26px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.input-text > label {
	margin: 0 !important;
	height: 100%;
  font-size: 16px;
  font-weight: 700;
}
.input-text > label > span {
	height: 100%;
	display: inline-block;
}
.input-text > label > .input-label {
	font-weight: 700;
	margin: 0;
}
.input-text > label > .description {
	color: #888888;
	font-weight: 400;
	margin-left: 16px;
	white-space: pre;
}
.desktop-error {
	min-width: 10px;
	color: #e30000;
	font-weight: 400;
	display: block;
	height: 26px;
	line-height: 26px;
}
.mobile-error {
	display: none;
}
.mobile-text {
	height: auto;
}
.labeled-input {
	width: 100%;
	margin: 10px 0 0;
	padding: 0 20px;
}
.labeled-input::placeholder {
	color: #bbbbbb;
}
.labeled-input:-webkit-autofill,
.labeled-input:-webkit-autofill:focus,
.labeled-input:-webkit-autofill:hover,
.labeled-input:-webkit-autofill:active {
	transition: background-color 5000s ease-in-out 0s;
	-webkit-transition: background-color 9999s ease-out;
}
.labeled-input:focus,
.labeled-input:focus-visible {
	border: 1px solid #0075ff !important;
}
.pass-input {
	border: 1px solid #00cd52;
}
.error-input {
	border: 1px solid #e30000;
}
.labeled-input:read-only {
	background: #f6f6f6;
	border: 1px solid #bbbbbb !important;
}
.input-desc-msg {
	color: #888888;
	margin-top: 10px;
}
.input-special-msg {
	color: #204ED8;
	margin-top: 10px;
}

/* mobile */
@media screen and (max-width: 1024px) {
	.input-container {
		width: 100%;
		font-size: 13px;
		margin-bottom: 20px !important;
	}

	.check-box {
		margin-bottom: 0px !important;
	}
	
	.input-text {
		height: auto;
		line-height: 21px;
	}
    .input-text > label {
        margin: 0 !important;
        height: 100%;
        font-size: 13px;
        font-weight: 700;
    }
	.mobile-text {
		justify-content: end;
		margin: 0 !important;
		color: #e30000;
	}
	.input-text > label > .description {
		margin-left: 8px;
	}
	.mobile-error {
		color: #e30000;
		font-weight: 400;
		font-size: 13px;
		display: block;
		height: 21px;
		line-height: 21px;
		text-align: right;
		margin-top: 6px;
	}
	.desktop-error {
		display: none;
	}
	.labeled-input {
		margin: 8px 0 0;
	}
}
