/*
 * Specific styles of signin component
 */
/*
 * General styles
 */
body, html {
    height: 100%;
    background-repeat: no-repeat;
}

body {
    background-image: linear-gradient(#f9bfb4, #FFFFFF);
}


.card-container.card {
    max-width: 350px;
    border:#FFFFFF solid 10px;
    border-radius: 10px;
}

/*
 * Card component
 */
.card {
    background-color: #F7F7F7;
    /* just in case there no content*/
    padding: 20px 25px 30px;
    margin: 0 auto 25px;
    margin-top: 20px;
    /* shadows and rounded borders */
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}

.profile-img-card {
    width: 96px;
    height: 96px;
    margin: 0 auto 10px;
    display: block;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

/*
 * Form styles
 */
.profile-name-card {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin: 10px 0 0;
    min-height: 1em;
}

.reauth-email {
    display: block;
    color: #404040;
    line-height: 2;
    margin-bottom: 10px;
    font-size: 14px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.form-signin #inputEmail,
.form-signin #inputPassword {
    direction: ltr;
    height: 44px;
    font-size: 16px;
}

.form-signin input[type=email],
.form-signin input[type=password],
.form-signin input[type=text],
.form-signin button {
    width: 100%;
    display: block;
    margin-bottom: 10px;
    z-index: 1;
    position: relative;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.form-signin .form-control:focus {
    border-color: rgb(104, 145, 162);
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgb(104, 145, 162);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgb(104, 145, 162);
}

.btn.btn-signin:before {
    background: url("../../Contents/img/login/login.png") no-repeat;
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: -3px 5px 0 0;
    background-size: contain;
    vertical-align: middle;
}



.forgot-password,
    .back-login {
    color: #223a70;
    font-size:16px;
}

.forgot-password:hover,
.forgot-password:active,
.forgot-password:focus,
.back-login:hover,
.back-login:active,
.back-login:focus{
    color: #000080;
}

#globalHeader .base .logoArea.login{
    padding: 0px 5px;
    display:inline-block;
    width:100%;
    text-align:center;
    background-image:linear-gradient(#FFFFFF, #FFFFFF)
}

#globalHeader .base .logoArea.login .logo img{
    width:300px;
    height:110px;
}

/* パスワード再発行画面 */
.title {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 20px;
}
.description {
    text-align: left;
    font-size: 0.8em;
    margin-left: -18px;
    margin-bottom: 20px;
}
.inputA {
    width: 100%;
    margin-bottom: 10px;
}
.inputA.input {
    ime-mode: inactive;
    height: 40px;
}
.link {
    text-align: center;
    margin-top: 15px;
}

@media screen and (max-width:768px) {
    #globalHeader .base.login{
        height:100px;
        background-image: none;
        background-color: #FFFFFF;
    }
    
    #globalHeader .base.login .logoArea{
        float:left;
        padding: 30px 10px 20px;
    }

    #globalHeader .base.login .logoArea .logo img{
        width:320px;
    }

    #globalHeader .base .logoArea.login{
        font-size:25px;
        font-weight:600;
        text-align:center;
    }

    #globalHeader .base .menuArea{
        width: 300px;
    }

    #globalHeader .base .nmArea{
        position: absolute;
        top: 60px;
        left: -30px;
    }
    
    #globalHeader .base .tonArea{
        display: table-cell;
        padding: 0 2px 2px 0;
        vertical-align: middle;
        padding: 10px 10px 0;
    }
    
    #globalHeader .base .signoutArea{
        display: table-cell;
        width: 100px;
        padding: 0 2px 2px 0;
        text-align: right;
    }
    
    #globalHeader .base .signoutArea .logo img{
        height: 63px;
    }
    
    .menu-float{
	    clear: both;
	    width:100%;
        text-align:left;
        padding-left:20%;
    }
}