/* ============= header */
header {
	width: 100vw;
	height: 60px;
	background: var(--color-4);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
	/* display: flex;
	align-items: center;
	justify-content: center; */
}

.header_container {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;
}

h1 {
	font-family: var(--font-2);
	font-size: 3rem;
	font-weight: 600;
	color: var(--color-3);
}

/* ============ main */
main {
	width: 45vw;
	height: 60vh;
	min-height: 450px;
	margin: 10vh auto;
	border: 1px solid var(--color-3);
	background: var(--color-2);
	border-radius: 10px;
}

/* =========== login */
.login_contain {
	width: 70%;
	height: 100%;
	margin: 0 auto;
	padding-top: 20px;
	display: flex;
	align-items: center;
	flex-direction: column;
	position: relative;
}

.login_icon {
	width: 70px;
	height: auto;
	color: var(--color-3);
	vertical-align: middle;
}

#login_block {
	width: 100%;
	/* display: none; */
}

.login_body {
	width: 100%;
	margin-top: 60px;
}

.login_body-form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.login_body-form input {
	height: 40px;
}

.login_body-form input[type="submit"] {
	font-size: 2rem;
}

.login_bottom {
	margin-top: 10px;
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.login_bottom a {
	color: var(--color-3);
}

.login_note {
	position: absolute;
	color: var(--color-1);
	bottom: 20px;
	left: 50%;
	transform: translate(-50%);
	text-wrap: nowrap;
}
/* ============ register */

#register_block {
	margin-top: 30px;
	width: 100%;
}

.register_form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.register_form input {
	height: 32px;
}

.register_submit {
	font-size: 1.8rem;
}

.register_bottom {
	margin-top: 10px;
}

.register_bottom a {
	color: var(--color-3);
}

.register_group {
	display: flex;
	gap: 10px;
}

.register_item {
	flex: 1;
	height: 32px;
}

/* ========== change pass */
#change_block {
	margin-top: 50px;
	width: 100%;
}

.change_bottom {
	margin-top: 10px;
}

.change_bottom a {
	color: var(--color-3);
}

/* =========== redirect */
#redirect_block {
	margin-top: 50px;
	width: 100%;
}

.redirect_title {
	color: var(--color-3);
}

.redirect_list {
	margin-top: 10px;
}

.btn_a {
	margin-top: 5px;
	font-size: 2rem;
}
