/*
 共通CSS
 */
.copyright{
    text-align: center;
    margin-top: 24px;
    color: #181A1F7C;
    font-size: 12px;
}

.body{
    background: #f0f0f0;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family:"Roboto", "Noto Sans JP",  "Helvetica Neue", Arial, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "BIZ UDPGothic", "Meiryo", sans-serif;
}


/*
 ログインページ用のCSS
 */

input::-webkit-input-placeholder, button {
    font-family: -apple-system, BlinkMacSystemFont, ʻHelveticaʼ, 'ヒラギノ⾓ゴ ProN W3', Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
}

.login__h1 {
    height: 80px;
    width: 100%;
    font-size: 36px;
    background: #01a6be;
    color: white;
    line-height: 150%;
    border-radius: 3px 3px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    box-sizing: border-box;
    padding: 20px;
}

.login__h2 {
  font-size: 18px;
  text-align: center;
  color: #181A1FD1;
  margin: 24px;
}

.login__form, .login__complete {
    box-sizing: border-box;
    width: 400px;
    box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.2);
    padding-bottom: 32px;
    border-radius: 3px;
    background: #fff;
    margin: 0 auto;
}

.login__input, .login__submit {
    margin: 24px auto;
    width: 300px;
    display: block;
    border: none;
    padding: 24px 0 8px 0;
    border-bottom: solid 1px #007992;
    transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 98%, #00B8D4 2%);
    background-position: -300px 0;
    background-size: 300px 100%;
    background-repeat: no-repeat;
    color: #181A1FF7;
    font-size: 14px;
}

.login__input:focus, .login__input:valid {
    box-shadow: none;
    outline: none;
    background-position: 0 0;
    overflow: visible;
}

.login__input:focus::-webkit-input-placeholder, .login__input:valid::-webkit-input-placeholder {
    color: #00B8D4;
    font-size: .5rem;
    transform: translateY(-20px);
    visibility: visible !important;
}

.login__submit--wrap {
    display: flex;
    justify-content: space-evenly;
}

.login__submit {
    border: none;
    background: #01a6be;
    cursor: pointer;
    border-radius: 3px;
    padding: 16px;
    width: 300px;
    color: white;
    margin: 32px auto 0;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.login__submit--disabled {
    background: rgb(224, 224, 224);
    box-shadow: none;
    cursor: default;
}

.login__submit:disabled{
    color: #B0B0B0;
    background: #F2F2F2;
    cursor: default;
    box-shadow: none;
}

.login__sso__submit {
    width: 200px;
}

.login__p--message{
    text-align: center;
    color: #E12F17;
}

.login__div--description {
  margin: 24px 40px 24px 40px;
}

.login__div--description p {
  color: #181A1FF7;
  margin: 0px;
}

.login__div--description.rule {
    margin: 0px 0px 0px 3px;
}

.login__div--description.rule.state {
    display: none;
    color: #008000;
    font-weight: bold;
}

.login__p--resetlink {
    text-align: center;
    margin: 32px auto;
    font-size: 14px;
    color: #181A1FD1;
}

.login__a--resetlink {
  color: #007992;
  font-size: 14px;
  text-decoration: none;
}


/*
 エラーページ用のCSS
 */
.error__div--container {
    margin: 0 24px;
}
.error__div--message {
    box-sizing: border-box;
    min-width: 400px;
    box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.2);
    padding-bottom: 40px;
    border-radius: 3px;
    background: #fff;
    margin: 0 auto;
}

.error__h1 {
    height: 80px;
    width: 100%;
    font-size: 36px;
    background: #00B8D4;
    color: white;
    line-height: 150%;
    border-radius: 3px 3px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    box-sizing: border-box;
    padding: 20px;
}

.error__p--message {
    color: #181A1FF7;
    text-align: center;
    padding: 0 24px;
    margin: 40px 0 0 0;
}

/*
 規約同意ページのCSS
 */

.login__form--agreement{
    min-width: 400px;
    max-width: 700px;
    box-sizing: border-box;
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.2);
    padding-bottom: 40px;
    border-radius: 3px;
    background: #fff;
    margin: 0 auto;
}
.agreement__div--text {
    margin: 24px;
    max-height: 300px;
    overflow-y: scroll;
}

/* FIXME 本文が連携されたら規約内のスタイル調整をする */
.agreement__div--text h2 {

}

.agreement__div--text h3 {

}

.agreement__div--text p {

}
