/*
 * Specific styles of signin component
 */
/*
 * General styles
 */
body,
html {
    height: 100%;
    background-repeat: no-repeat;
    background-color: #006fb0;
    background-image: linear-gradient(160deg, #006fb0 0%, #80bbd0 100%);
}

.messages-space {
    height: 10vh;
    max-height: 10vh;
}

.card-container.card {
    max-width: 350px;
    padding: 40px 40px;
}

.btn {
    font-weight: 700;
    height: 36px;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    cursor: default;
}

.card {
    background-color: #F7F7F7;

    padding: 20px 25px 30px;
    margin: 0 auto 25px;
    margin-top: 50px;

    -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);
}

.logo-img-card {
    width: 200px;
    margin: auto;
    display: block;
}

.form-signin #id_login,
.form-signin #id_password {
    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 {}

.btn.btn-signin {
    padding: 0px;
    font-weight: 700;
    font-size: 18px;
    height: 36px;
}

.btn.btn-signin:hover,
.btn.btn-signin:active,
.btn.btn-signin:focus {}

.forgot-password {
    color: rgb(104, 145, 162);
}

.forgot-password:hover,
.forgot-password:active,
.forgot-password:focus {
    color: rgb(12, 97, 33);
}

.errorlist {
    color: red;
    font-size: 16px;
    padding: 0 0 0 20px;
    margin-bottom: 0px;
}