/*
 * Specific styles of signin component
 */
/*
 * General styles
 */
body, html {
    height: 100%;
    background-repeat: no-repeat;
    background-image: linear-gradient(#0081e7, #004881);
    font-size: .9em;
}

.card-container.card {
    max-width: 350px;
    padding: 0px 0px 30px 0px;
    box-shadow: 0px 0px 30px rgba(0,0,0,0.4);
    border-radius: 5px;
}
#logo {
    overflow: hidden;
    background: #004881;
    padding: 20px 0px;
    border-bottom: 1px solid #d5d5d5;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
#body {
    padding: 0px 65px;
text-align: center;
    text-align: center;
}
/* #remember { padding: 15px 0px 15px 0px;} */

.btn {
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    text-transform: uppercase;
}


.btn-primary:hover{
    background-color: #ed6519 !important;
}


.btn-blink{
    background-color: #004881 !important;
    color: white;
}

.btn-blink:hover{
    background-color: #00355f !important;
    color: white;
}

/*
 * Card component
 */
.card {
    background-color: #fff;
    padding: 20px 25px 30px;
    margin: 0 auto 25px;
    margin-top: 50px;
    border-radius: 5px;
    box-shadow: 0px 0px 30px rgba(0,0,0,0.4);
}

.profile-img-card {
    width: auto;
    height: 67px;
    margin: 30px auto 10px;
    display: block;
}

.card-footer {
    margin-top: 5rem;
    background-color: transparent;
    text-align: center !important;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 3rem;
    font-size: 80%;
    font-weight: normal;
    border-top: 1px solid rgba(0,0,0,.125);
    padding: .5rem 1rem;
}

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

.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 #email,
.form-signin #username,
.form-signin #password {
    direction: ltr;
    /* height: 44px; */
    /* font-size: 16px; */
}

.form-signin input[type=email],
.form-signin input[type=password],
.form-signin input[type=text] {
    /* height: calc(1.5em + 0.75rem + 2px); */
    padding: .375rem .75rem;
    font-size: 0.9rem;
    font-weight: 400;
    width: 100%;
    display: block;
    background-color: #7dbaec2e;
    color: #495057 !important;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    margin-bottom: 10px;
    z-index: 1;
    position: relative;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.form-signin button {    
    width: 100%;
    display: block;
    margin-bottom: 10px;
    z-index: 1;
    position: relative;
    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 {
    background-color: #006DB1;
    padding: 10px;
    font-weight: 400;
    font-size: 1.2em;

    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border: none;
    -o-transition: all 0.218s;
    -moz-transition: all 0.218s;
    -webkit-transition: all 0.218s;
    transition: all 0.218s;

}

.btn.btn-signin:hover,
.btn.btn-signin:active,
.btn.btn-signin:focus {
    background-color: rgb(12, 97, 33);
}

a, 
.forgot-password {
    color: #006dc7;
    font-size: .9em;
}

a:hover,
.forgot-password:hover,
.forgot-password:active,
.forgot-password:focus{
    color: #004881;
    text-decoration: none;
}