﻿@charset "utf-8";

/*==========================================
 ログイン
===========================================*/

/*フォーカス時のアウトライン無効*/
input:focus,
textareat:focus,
select:focus {
    outline: 0;
    border-color: none;
}


.login {
    background: url(../images/bg_login.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.login:before {
    content: '';
    background: inherit;
    -webkit-filter: blur(3px);
    -moz-filter: blur(3px);
    -o-filter: blur(3px);
    -ms-filter: blur(3px);
    filter: blur(3px);
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    z-index: -1;
}

.login-box {
    background: rgba(22, 137, 87, 0.8);
    width: 400px;
    height: 400px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    border-radius: 20px;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
}

.login-box h1 {
    font-size: 40px;
    letter-spacing: 3px;
    font-family: 'Russo One', sans-serif;
    color: #fff;
    text-align: center;
}

.login-box h1 span {
    display: block;
    font-size: 15px;
    margin-top: 10px;
    letter-spacing: normal;
    line-height: 1.3;
}

.login-icon {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    width: 180px;
    align-items: center;
    margin: 0 auto;
}

.login-icon-car,
.login-icon-bicycle {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50px;
    text-align: center;
    padding: 24px 0 0 0;
    position: relative;
    top: -32px;
    margin-bottom: -6px;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
}

.login-icon-car i,
.login-icon-bicycle i {
    color: #3e3e3e;
    font-size: 30px;
}

#form-login {
    margin: 36px auto;
    width: 280px;
}

#form-login input[type="text"],
#form-login input[type="password"] {
    width: 280px;
    height: 44px;
    border: 0;
    border-radius: 4px;
    background: #f0f0f0;
    font-size: 13px;
    padding: 10px 15px 10px 60px;
    display: block;
    margin: 0 auto 12px;
}

:placeholder-shown,
::-webkit-input-placeholder {
    color: #b0b0b0;
    font-size: 13px;
}

label.label-account-name,
label.label-login-password {
    position: relative;
    display: block;
}

.icon-account-name {
    background: #e3e3e3;
    color: #4E4E4E;
    width: 44px;
    height: 44px;
    position: absolute;
    top: 0;
    text-align: center;
    padding: 12px 0 0 0;
    border-radius: 4px 0 0 4px;
    border-right: 1px solid #dbdbdb;
}

.icon-login-password {
    background: #e3e3e3;
    color: #4E4E4E;
    width: 44px;
    height: 44px;
    position: absolute;
    top: 0;
    text-align: center;
    padding: 12px 0 0 0;
    border-radius: 4px 0 0 4px;
    border-right: 1px solid #dbdbdb;
}

.icon-account-name i,
.icon-login-password i {
    font-size: 23px;
}

.login-box-btn {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 640px) {
    .login-box {
        width: 100%;
        background: none;
        box-shadow: none;
    }

    .login-icon {
        display: none;
    }

    .login:before {
        filter: brightness(80%) blur(3px);
    }

    .login-box-btn {
        display: block;
    }
}




