﻿html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    user-select: none;
}

.login-container {
    width: 100%;
    height: 100%;
    min-height: 100%;
    /*background-color: #272b30;*/
    background-color: #005869;
}

.login-dialog {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 617px;
    height: 336px;
    background-image: url('../../Images/login-dialog.png');
}

    .login-dialog form {
        width: 100%;
        height: 100%;
    }

.input-line {
    height:30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 95px;
    margin-bottom: 12px;
}

.input-label {
    display: table-cell;
    vertical-align: middle;
    width: 97px;
    color: #656563;
}

    .input-label b {
        font-weight: 600;
    }

.input-editor {
    width: 100%;
    padding-left: 13px;
}

.input-editorform {
    display: table-cell;
    vertical-align: middle;
}

    .input-editorform:hover {
        cursor: pointer;
    }

.input-validation-error {
    border-color: #A94442;
}

#LoginMemoryBlock {
    height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 95px;
    font-size: 14px;
    color: #455A64;
}

#input-line-bottom {
    height: 37px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 95px;
}

#btn-login {
    display: table-cell;
    border: none;
    width: 121px;
    height: 37px;
    position: relative;
    text-decoration: none;
    color: #000000;
    line-height: 37px;
    border-radius: 5px;
    text-align: center;
    overflow: hidden;
    font-weight: bold;
    background: #6ab547;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.66);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
    /*background-image: url('../../Images/login_button_01.png');*/
}

    #btn-login:active {
        /*background-image: url('../../Images/login_button_02.png');*/
    }

    #btn-login:hover {
        cursor: pointer;
        text-decoration: none;
        background-color: #57a533;
        text-shadow: 1px 1px 1px rgba(178, 241, 203, 0.66);
        /*-webkit-animation: btn-login 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
        -moz-animation: btn-login 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
        animation: btn-login 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;*/
    }

/*@-webkit-keyframes btn-login {
    0% {
        -webkit-transform: scale(0.85);
        transform: scale(0.85);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes btn-login {
    0% {
        -webkit-transform: scale(0.85);
        transform: scale(0.85);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes btn-login {
    0% {
        -webkit-transform: scale(0. 85);
        transform: scale(0.85);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}*/

.inputTxt {
    position: relative;
    width: 330px;
}
    .inputTxt input:hover {
        cursor: pointer;
    }

    .inputTxt input {
        font-size: 14px;
        box-sizing: border-box;
        width: 100%;
        height:30px;
        padding: 0.3em;
        transition: 0.3s;
        border: 1px solid #b8b8b8;
        border-radius: 4px;
        outline: none;
        color: #455A64;
    }

    .inputTxt i {
        position: absolute;
        top: 0px;
        right: 10px;
        padding: 7px 0px;
        transition: 0.3s;
        color: #999999;
    }

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
    -moz-appearance: textfield;
}


input[type=checkbox] {
    display: none;
}


/*-----コモン変更-----*/
.cmn-checkbox-block.checkbox-size-14:after {
    width: 10px;
    height: 10px;
}

.cmn-checkbox-block.checkbox-size-14:before {
    left: 5px;
    width: 3px;
    height: 7px;
}