#login_form_input {
    max-width: 250px;
}

/* .body { */
    /* position: absolute; */
    /* top: -200px; */
    /* left: -20px; */
    /* right: -40px; */
    /* bottom: -40px; */
    /* width: auto; */
    /* height: auto; */
    /* background-image: url(../images/login_bgimage.jpg); */
    /* background-size: cover; */
    /* -webkit-filter: blur(1px); */
    /* -webkit-filter: brightness(90%); */
    /* z-index: 0; */
/* } */

/* .grad { */
    /* position: absolute; */
    /* top: -20px; */
    /* left: -20px; */
    /* right: -40px; */
    /* bottom: -40px; */
    /* width: auto; */
    /* height: auto; */
    /* background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.65))); */
    /* Chrome,Safari4+ */
    /* z-index: 1; */
    /* opacity: 0.7; */
/* } */

.login {
    /* position: absolute; */
    /* top: calc(50% - 75px);
    left: calc(50% - 10px); */
    /* height: 150px;
    width: 350px; */
    /* padding: 10px; */
    z-index: 2;
}

.login input[type=text] {
    width: 250px;
    height: 30px;
    border: 1px solid #d9d9d9;
    border-radius: 2px;
    font-family: 'Exo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 4px;
}

.login input[type=password] {
    width: 250px;
    height: 30px;
    border: 1px solid #d9d9d9;
    border-radius: 2px;
    font-family: 'Exo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 4px;
    margin-top: 10px;
}

.login input[type=submit] {
    width: 250px;
    height: 35px;
    background: #FF7F00;
    border: 1px solid #fff;
    cursor: pointer;
    transition: .3s;
    border-radius: 2px;
    color: #fff;
    font-family: 'Exo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 6px;
    margin-top: 10px;
}

.login input[type=submit]:hover {
    opacity: 0.8;
}

.login input[type=submit]:active {
    opacity: 0.6;
}

.login input[type=text]:focus {
    outline: none;
    border: 1px solid #FF7F00;
}

.login input[type=password]:focus {
    outline: none;
    border: 1px solid #FF7F00;
}

/* .login input[type=submit]:focus { */
    /* outline: none; */
/* } */

::-webkit-input-placeholder {
    color: #888;
}

::-moz-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.vh-90 {
    height: 90vh !important;
}

/* ログイン画面の場合は画面幅を固定しない */
.view_content {
    width: 100% !important;
}

/* エラーの設定 */
.errorMsg {
    background: #f8d7da;
}
.errorMsg > div{
    display: none;
}
.errorMsg > ul{
    padding: 0;
    color: #721c24;
    margin-bottom: 0;
    padding: 0.25rem;
}
.errorMsg > ul li {
    list-style: none;
}

.text-sm {
    font-size: small;
}

/* ログイン画面の場合は上部のエラーを非表示にしておく ※ズレるため */
.alert {
    display: none !important;
}
