textarea {
	resize: none;
}

.bg_area {
	background-image: url("../images/bg1.jpg");
	background-size: cover;
	opacity: 0.9;

	height: 100vh;
}

.realIP {
	color: var(--primary);
}

.h3text {
	color: var(--primary);
	text-decoration: none;
	font-size: xx-large;
	font-weight: bolder;
}

@media screen and (max-width: 576px) {
	.h3text {
		font-size: x-large;
	}
}

#signUPResult {
	display: none;
	color: var(--del-color);
}

/* 화면 너비가 575px에서 768px 사이일 때 스타일 */
@media screen and (min-width: 576px) and (max-width: 768px) {
	.small-label-in768 {
		font-size: 0.75rem;
	}
}

.flex-logo-login {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.flex-more-theme {
	display: flex;
	flex-direction: row;
}

@media screen and (max-width: 576px) {
	.flex-more-theme {
		flex-direction: column-reverse;
	}
}

footer,
footer * {
	color: #fff !important;
}

pre,
code {
	white-space: pre-wrap;
	word-break: break-all;
}

.jwt-tab-buttons {
	margin-bottom: 1.5rem;
	width: 100%;
	justify-content: center;
	display: flex;
}
.jwt-tab {
	background: none;
	border: none;
	font-size: 1.2rem;
	font-weight: bold;
	padding: 0.5rem 1.5rem 0.5rem 1.5rem;
	cursor: pointer;
	border-bottom: 4px solid transparent;
	transition: border-bottom 0.2s;
	flex: 1;
	min-width: 120px;
	text-align: center;
	color: #222;
	height: auto;
	line-height: 1.5;
}
.jwt-tab.rainbow-underline {
	border-bottom: 4px solid;
	border-image: linear-gradient(90deg, #ff5f6d, #ffc371, #47cf73, #1fa2ff, #a259c4, #ff5f6d) 1;
}

#jwtEncodePage {
	display: flex;
	flex-wrap: wrap;
	margin-left: -8px;
	margin-right: -8px;
	gap: 0;
}
#jwtEncodeColL,
#jwtEncodeColR {
	flex: 1 1 100%;
	max-width: 100%;
	padding: 8px;
	box-sizing: border-box;
}
@media (min-width: 768px) {
	#jwtEncodeColL,
	#jwtEncodeColR {
		flex: 0 0 50%;
		max-width: 50%;
	}
}

#jwtDecodePage {
	display: flex;
	flex-wrap: wrap;
	margin-left: -8px;
	margin-right: -8px;
	gap: 0;
}
#jwtDecodeColL,
#jwtDecodeColR {
	flex: 1 1 100%;
	max-width: 100%;
	padding: 8px;
	box-sizing: border-box;
}
@media (min-width: 768px) {
	#jwtDecodeColL,
	#jwtDecodeColR {
		flex: 0 0 50%;
		max-width: 50%;
	}
}

#jwtToken {
	min-height: 9em;
}

#jwtTokenResult {
	min-height: 9em;
	background: #f3f6f8;
	border: none;
	border-radius: 8px;
	font-size: 0.85em;
	color: #2563eb;
	padding: 1em;
	resize: none;
	width: 100%;
	box-sizing: border-box;
	font-family: "Menlo", "Monaco", "Consolas", "Courier New", monospace;
	outline: none;
}

.jwt-decode-result {
	background: #f3f6f8;
	border-radius: 8px;
	padding: 1em;
	min-height: 9em;
}

.jwt-decode-result pre,
.jwt-decode-result code {
	background: none;
	border: none;
	border-radius: 8px;
	font-size: 0.85em;
	color: #2563eb;
	padding: 0;
	font-family: "Menlo", "Monaco", "Consolas", "Courier New", monospace;
	box-sizing: border-box;
	margin: 0;
}
