/*
 * Specific styles of signin component
 */
/*
 * General styles
 */
body, html {
    height: 100%;
    background-repeat: no-repeat;
}

body {
    background-image: linear-gradient(to right,#f0ebcc,#5e9cca 50%,#6e85d0);
}

.valid-msg-area ul {
    font-size: 0.9rem;
    background-color: white;
}

.login-area {
    max-width: 300px;
}

.login-input {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    background-color: white;
    border-radius: 4px;
    padding-left: 0.5rem;
}
    .login-input > input[type=text],
    .login-input > input[type=password] {
        border: none;
        box-shadow: unset;
    }

.login-icon {
    min-width: 1.5rem;
}

.btn.btn-signin {
    font-weight: 700;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    height: 40px;
    background-image: linear-gradient(#FFF, #FFF);
    color: #495057;
}

    .btn.btn-signin:hover,
    .btn.btn-signin:focus {
        background-image: linear-gradient(#F0EBCC, #F0EBCC);
        border-color: #4F44BC;
        opacity: 0.8;
        color: #000;
    }

    .btn.btn-signin:active {
        opacity: 0.5;
    }
