/*共通構造*/
*, :after, :before {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
}

body{
        background-color: #eee;
}
.container {
	width:100%;
}

@media screen and (min-width: 600px) {
        .container {
                width:600px;
                margin:0 auto;
        }
}

img{
        border: 0;
        max-width: 100%;
        vertical-align: middle;
}

p{
        margin-top: 0;
        margin-bottom: 1rem;
}

.card{
   display: block;
   margin: 120px auto 0 auto;
   background-color: #fff;
}

.card.login{
        width: 500px;
        max-width: 100%;
}

.card-header {
        background-color: rgba(85,110,230,.25);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 10px;
}

.card-header .text{
        width: 70%;
        padding: 0 12px;
}

.card-header .text h5{
        font-size: 20px;
        line-height: 1.2;
        color: #494949;
        margin-top: 0;
        margin-bottom: 0.5rem;
}

.card-header .text p{
        font-size: 12px;
}

.card-header .logo{
        width: 30%;
        padding: 0 12px;
}

.card-body{
        padding: 25px;
}

.auth-logo{
        display: flex;
        width: 70px;
        height: 70px;
        align-items: center;
        justify-content: center;
        background-color: #f5f5ff;
        border-radius: 50%;
        margin-top: -30px;
}

.auth-logo img{
        margin-bottom: 5px;
}

.pt-0{
        padding-top: 0;
}

.p-2 {
        padding: 0.5rem;
}

.mb-3 {
        margin-bottom: 1rem;
}

.form-label {
        margin-bottom: 0.5rem;
        color: #494949;
        font-size: 14px;
}

button, input, optgroup, select, textarea {
        margin: 0;
        font-family: inherit;
        font-size: inherit;
        line-height: inherit;
    }


.form-control {
        display: block;
        width: 100%;
        padding: 5px 10px;
        font-size: 14px;
        line-height: 1.5;
        color: #495057;
        background-color: #fff;
        background-clip: padding-box;
        border: 1px solid #ced4da;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 0.25rem;
        -webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
        transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
        transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
        transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}

.form-control:focus {
        color: #495057;
        background-color: #fff;
        border-color: #b9bfc4;
        outline: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
}

.float-end {
        float: right;
}

.text-muted {
        color: #74788d;
        font-size: 12px;
}

a.text-muted {
        text-decoration: none;
}

a.text-muted:hover {
        text-decoration: underline;
}

.form-check, .form-check-input, .form-check-label {
        cursor: pointer;
        margin-bottom: 0;
        color: #494949;
        font-size: 14px;
}

.mt-3 {
        margin-top: 1rem;
}

.btn {
        display: inline-block;
        font-weight: 400;
        line-height: 1.5;
        color: #495057;
        text-align: center;
        vertical-align: middle;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background-color: transparent;
        border: 1px solid transparent;
        padding: 0.47rem 0.75rem;
        font-size: .8125rem;
        border-radius: 0.25rem;
        -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
        transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
        transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
        transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}

.btn-primary {
        color: #fff;
        background-color: #0059B3;
        border-color: #0252a1;
}

.btn-primary:hover {
        background-color: #3b5fc3;
        border-color: #3258c0;
}

.btn-login{
        width: 150px;
        max-width: 100%;
        margin: 0 auto;
        display: block;
}

.btn-forgot{
        width: 250px;
        max-width: 100%;
        margin: 0 auto;
        display: block;
}

.w-100{
        width: 100% !important;
}

.center{
        text-align: center;
}

.desc{
        font-size: 12px;
        color: #494949;
}

.error_msg{
        font-size: 12px;
        color: #ff0000;
}

.alert {
        position: relative;
        padding: 0.75rem 1.25rem;
        margin-bottom: 1rem;
        border: 1px solid transparent;
        border-radius: 0.25rem;
}

.alert-primary {
        color: #004085;
        background-color: #cce5ff;
        border-color: #b8daff;
}

.alert-danger {
        color: #721c24;
        background-color: #f8d7da;
        border-color: #f5c6cb;
}