* {
	box-sizing: border-box;
}

/** edge対応 */
::-ms-reveal {
    display: none;
}

input, button {
	font: inherit;
}

html {
	height: 100%;
}

body {
	height: 100%;
	margin: 0;
	font-size: 14px;
	font-family: 'HGMaruGothicMPRO';
	display: flex;
	justify-content: center;
}

._hidden {
	display: none;
}

._block {
	display: block;
}

.root {
	max-width: 680px;
	height: 100%;
	width: 100%;
}

.cpid-header {
	height: 51px;
	padding: 10px;
}

.header-logo {
	width: 70%;
	margin: 0 auto;
}

.title {
	background: #e4e4e4;
	color: #000B33;
	height: 25px;
	padding-left: 10px;
	display: flex;
	align-items: center
}

.prompt {
	color: #ffffff;
	padding: 5px 25px;
}

.form {
	background: #ffffff;
	margin: 0px 12px 13px 12px;
	padding: 10px;
	border-radius: 10px;
}

.errorMessage {
	text-align: center;
	margin-bottom: 10px;
	font-weight: 700;
	color: #D90000;
}

.content {
	background: #001939;
	padding: 4px;
	height: calc(100% - 51px - 25px);
}

label {
	display: flex;
	width: 100px;
	justify-content: end;
	align-items: center;
	font-weight: 700;
	margin-right: 5px;
}


.cpid-container {
	padding-bottom: 0.8em;
	display: flex;
}

.cpid {
	flex-grow: 1;
	height: 30px;
	border-radius: 10px;
	background-color: #eeeef0;
	border: none;
	padding: 5px 10px;
	outline: none;

	font-size: 16px;
}


.eye-container {
	height: 100%;
	aspect-ratio: 1/1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.eye {
	width: 70%;
	aspect-ratio: 1/1;
}


.input-container {
	flex-grow: 1;
	display: flex;
	border-radius: 10px;
	height: 30px;
	background-color: #eeeef0;
	border: none;
}

.accessKey-container {
	display: flex;
}

.accessKey {
	padding: 5px 10px;
	border: none;
	background-color: #eeeef0;
	flex-grow: 1;
	border-radius: 10px;

	font-size: 16px;
}

.accessKey:focus {
	outline: none;
}

.vertifyBtn-container {
	padding: 0 13px;
}

.vertifyBtn {
	cursor: pointer;
	border: 1px solid transparent;
	height: 36px;
	width: 100%;
	border-radius: 10px;
	background-color: #007aff;
	color: #fff;
	letter-spacing: 5px;
}