﻿/*
ログイン画面用スタイル
2021.10.23  S.Itagaki     CREATED
*/

/* 画面背景(背景画像指定なしの場合) */
div.gradient
{
    color: #fff; /* For WebKit (Safari, Google Chrome etc) */
    background: -webkit-gradient(linear, left top, left bottom, from(#9df), to(#fff)); /* For Mozilla/Gecko (Firefox etc) */
    background: linear-gradient(to bottom, #9df, #fff);
}

/* 画面部の画像表示エリア (設定時のみ表示) */
div.DispImage
{
    display: none;
    position: absolute;
    top: 10px;
    right: 100px
}

/* 画面部の画像表示エリア画像*/
div.DispImage > img
{
	width: auto;
    max-width: 620px;
}

/* 画面縦に並べるための全体パネル */
div.middlePanel
{
	display:flex;
    flex-direction: row;
    width:100%;
    height:100%;
}

/* 画面中央の表示パネル */
div.LoginPanel
{
    display: flex;
    flex-direction: column;
    width: 350px;
    background-color: white;
    margin: auto;
    transform: translateY(-30%);
    padding: 44px;
    box-shadow: 0 2px 6px rgb(0 0 0 / 20%)
}

/* 表示パネル上部の表示エリア*/
div.UpperDispArea
{
    display: flex;
    flex-direction: row;
}

/* 表示パネル上部のメッセージ表示エリア (設定時のみ表示) */
div.DispMessage
{
    text-align: left;
    margin: 0 10px 0 0;
    color: var(--logindisp--message-color);
    display: none;
}

/* 表示パネル中部のユーザIDパスワード入力エリア */
div.LoginInputArea
{
    margin: auto 0 0 0;
}
/* 表示パネル中部の入力欄の行エリア */
div.LoginInputIDRow{
    position: relative;
	padding:44px 0 0 0;
}
div.LoginInputPwRow{
    position: relative;
	padding:44px 0 44px 0;
}


/* 表示パネル中部の入力欄の行エリア */
input.inputForm{
	width:100%;
	height:100%;
	font-size:15px;
	font-weight:400;
	background-color: #FFFFFF;
	border: none;
	border-bottom: 1px solid #2D6896;
	outline: none;
}


/* 表示パネル中部の入力欄の非フォーカス時の下部ボーダー */
input.inputForm ~ span.pw_focus_line {
	position: absolute;
	bottom: calc(44px + 0px);
	left: 0;
	width: 0;
	height: 2px;
	transition: 0.4s;
	background-color:#3C8BC9;
}

input.inputForm ~ span.id_focus_line {
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 0;
	height: 2px;
	transition: 0.4s;
	background-color:#3C8BC9;
}

/* 表示パネル中部の入力欄のフォーカス時の下部ボーダー */
input.inputForm:focus ~ span.pw_focus_line{
	width: calc(100% + 4px);
	transition: 0.4s;
}

input.inputForm:focus ~ span.id_focus_line{
	width: calc(100% + 4px);
	transition: 0.4s;
}

/* 表示パネル下部のログインボタン表示エリア */
div.DispLoginButton
{
    margin: 0 0 0 auto;
}
button.LoginButton
{
  background-color: #0067b8 !important;
  border: solid #0067b8 1px !important;
  color: white !important;
  height: 40px !important;
  width: 120px !important;
  font-size: var(--midashi--caption--font-size) !important;
  font-weight: 700 !important;
}
button.LoginButton:focus
{
 border:solid 2px !important;
 border-color:black !important;
}


/* 表示パネル下部のエラーメッセージ表示エリア */
div.DispErrorMessage
{
    color: #E60012;
    height: 19px;
    margin: 10px 0 0 10px;
}

/* 表示パネル下部のブランドロゴ表示エリア */
div.BrandLogo
{
    background-image: url(../../LogoImages/40/ableoffice_logo_name.svg);
    background-size:cover;
    width: 350px;
    height: 43px;
    margin: 34px 0 0 auto;
}

/* 表示パネル下部のコピーライト表示エリア */
div.DispCopyRight
{
    color: #757575;
	font-size:10px;
	font-weight:400;
    height: 14px;
    margin: 0 0 0 0;
    text-align:right;
}

/* カード連携アイコン */
img.IcCardIcon
{
	width: 10%;
	height: 10%;
	vertical-align: bottom;
	padding-left: var(liststyle-cell-padding);
}
