@charset "UTF-8";
.clearfix:after {
  display: block;
  content: "";
  clear: both;
}

/* --------Reset Stylesheet */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, a, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  background: transparent;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  line-height: 1;
  font-size: 1.6rem;
  -webkit-print-color-adjust: exact;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1, h2, h3, h4, h5, h6, th {
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

input, select {
  vertical-align: middle;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  /*background: transparent;*/
}

img {
  border: none;
}

/* モダンブラウザ用上付き文字表示 */
* > sup {
  vertical-align: text-top;
  line-height: 1 0.2rem;
  font-size: 90%;
}
* > sub {
  vertical-align: text-bottom;
  line-height: 1 0.4rem;
}

select {
  font-size: 1.4rem;
  line-height: 24px;
  font-weight: normal;
  height: 24px;
  border: #AEAEAE solid 1px;
  border-radius: 4px;
  background: #FAFAFA;
  box-sizing: border-box;
}
select.mini {
  min-width: 100px;
}

html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  line-height: 1;
  font-size: 1.6rem;
  -webkit-print-color-adjust: exact;
  background: url(../images/bg-body.png) #fcfcfc repeat-y;
  background-size: 25%;
}

.wrapper {
  height: 100vh;
  width: 100%;
}

.contents-pane {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-panel {
  padding: 1.6rem;
  width: 50rem;
  min-height: 32rem;
  border-radius: 0.4rem;
  background: #ffffff;
  border: 1px solid #d8d8d8;
  box-shadow: 0 2px 2px rgba(35, 35, 35, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.login-panel .message-area {
  height: 3rem;
  display: flex;
  align-items: center;
}
.login-panel .message {
  min-height: 1.6rem;
  font-size: 1.6rem;
  margin-bottom: 0.2rem;
}
.login-panel .message.error {
  color: #BB393B;
}
.login-panel .error-message-area p {
  text-align: center;
}
.login-panel .totp-message {
  margin-top: 2.5rem;
}
.login-panel .qr-message {
  display: inline-block;
}
.login-panel .qr-message .message {
  text-align: left;
}
.login-panel .error-code {
  margin-bottom: 1rem;
  color: #BB393B;
  font-size: 2rem;
  font-weight: bold;
}
.login-panel .login-form {
  width: 80%;
  margin-bottom: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login-panel .login-form li + li {
  margin-top: 2.4rem;
}
.login-panel .login-form li:last-child {
  margin-top: 3.2rem;
}
.login-panel .login-form .form-item {
  text-align: center;
}
.login-panel .top {
  width: 100%;
  display: flex;
  align-items: center;
}
.login-panel h1 {
  color: #595959;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 2rem;
}
.login-panel .system-name {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 5.6rem;
}
.login-panel .system-name:after {
  content: "";
  height: 1px;
  width: 10%;
  background-color: green;
  position: absolute;
  bottom: 5px;
}

[id=btn_login] {
  display: block;
  margin: 0 auto;
}
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #a7a7a7;
    padding: 1rem 0;
    text-align: center;
}

.icon-wrapper{
  display: inline-block;
  width: 30px;
}
.icon-ok {
  display: inline-block;
  content: '';
  width: 15px;
  height: 10px;
  border-left: 3px solid #000000;
  border-bottom: 3px solid #000000;
  transform: rotate(-45deg);
  margin-left: 1rem;
  margin-right: auto;
}

.icon-ng {
	display: inline-block;
	color: #000000;
	width: 24px;
	height: 24px;
	position: relative;
	vertical-align: middle;
}
.icon-ng:before,
.icon-ng:after {
	content: "";
	position: absolute;
	top: 11px;
	width: 24px;
	height: 3px;
	background-color: #000000;
}
.icon-ng:before {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.icon-ng:after {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.qr{
  display: block;
  margin-left: auto;
  margin-right: auto;
}
