﻿/*
+==============================================================================
|
|    Copyright(c) 2020 IMS. All Rights. Reserved.
|
|  ・システム     ： クリーニング店向けＰＯＳシステム
|
+==============================================================================
|
|   C01001D01（ログイン画面）スタイルシート
|
|=== 改 版 履 歴 ==============================================================
| Date         Author           Reference                              Version
|==============================================================================
| 2020/07/01   IMS下平          新規作成                               1.0.0
|
|
===============================================================================
*/
@charset "UTF-8";

/* ログイン専用BODY */
body {
    background-image: url("../Content/Themes/images/menu_bg.jpg") !important;
    background-size: cover !important;
}

/* 画面解像度の高さが 1280px 以下である場合 */
@media screen and (max-height: 1280px) {

    /* ログインタイトル */
    div.login-title-field {
        height: 60px;
        width: 100%;
        margin-top: 20%;
        font-size: 28px;
        color: #ffffff;
        text-align: center;
    }
}

/* 画面解像度の高さが 800px 以下である場合 */
@media screen and (max-height: 800px) {
    /* ログインタイトル */
    div.login-title-field {
        height: 60px;
        width: 100%;
        margin-top: 8%;
        font-size: 28px;
        color: #ffffff;
        text-align: center;
    }
}

div.login-input-area {
    height: 320px;
    width: 100%;
    margin-top: 20px;
    text-align: center;
}

div.login-input-field {
    display: block;
    height: 100%;
    background-color: #ffffff;
    margin: auto;
    width: 50%;
    text-align: center;
    padding: 40px;
}

/* ログイン画面：テキストフィールド */
div.login-input-field > div > input {
    border: solid 1px #d4cfcf;
    font-family: 'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif !important;
    line-height: 1.5em;
    padding: 0;
    border-radius: 4px;
    -webkit-appearance: none;
    margin-bottom: 1em;
    padding: 0 16px;
    width: 400px;
    height: 30px;
    padding-left: 48px;
    font-size: 16px;
}
div.login-input-field > div > input.login-user-text {
    background-image: url(../Content/Themes/images/id.png);
    background-size: 8% auto;
    background-position: 4px center;
    background-repeat: no-repeat;
}
div.login-input-field > div > input.login-password-text {
    background-image: url(../Content/Themes/images/pw.png);
    background-size: 8% auto;
    background-position: 4px center;
    background-repeat: no-repeat;
}

/* ログインボタン */
.btn-login {
    height: 30px;
    width: 300px;
    font-size: 14px !important;
    margin-top: 10px;
}
.btn-login:hover {
    height: 30px;
    width: 300px;
    font-size: 14px !important;
    margin-top: 10px;
}

.mode-radio-btn {
    margin-top: 50px;
}

.mode-radio-btn input[type="radio"] {
    display: none;
}

.mode-radio-btn label {
    display: inline-block;
    padding-top: 10px;
    height: 50px;
    width: 140px;
    max-width: 200px;
    font-size: 20px;
    font-family: 'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif !important;
    color: #ffffff;
    background-color: #2596d2;
    font-weight: normal !important;
    border-radius: 2px;
    border: 1px solid #2596d2;
    cursor: pointer;
    vertical-align: top;
}

.mode-radio-btn input[type="radio"]:checked + label {
    color: #ffffff;
    background-color: #0050c5;
}