@CHARSET "UTF-8";

:root {
	--lineGradient: linear-gradient(-90deg, #1959e6 0%, #16cbe1 35%, #16cbe1 65%, #1959e6 100%);
}

.login-page {
    background: #f6f9fc url("../images/login-bg.jpg") no-repeat fixed center;
}
.login-box .card {
    box-shadow: 0 8px 12px 1px rgba(29,17,51,.04),0 3px 16px 2px rgba(9,32,77,.12),0 5px 10px -3px rgba(29,17,51,.12);
}
.login-box .card::after {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #1959e6;
	background: var(--lineGradient);
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.login-box .card-icon {
	margin: 1.75rem 0 1rem 0;
	text-align: center;
	color: #007bff;
	z-index: +1;
}
.login-box .card-header {
	text-align: center;
}
.login-box .card-title {
    float: none;
    font-size: 1.4rem;
}
.login-box .card-body {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.login-box .card .form-control {
    height: calc(1.5rem + 0.75rem + 6px);
    padding: 0.50rem 0.75rem;
}
.login-box label {
    color: #343a40;
}
.login-box label:not(.form-check-label):not(.custom-file-label) {
    font-weight: 600;
}
.login-box .invalid-feedback {
    font-size: 90%;
}
.login-box .card .btn,
.login-box .card .input-group .btn {
    height: calc(1.5rem + 0.75rem + 6px);
    padding: 0.5rem 0.75rem;
}
.login-box .card .btn-sm,
.login-box .card .btn-group-sm > .btn {
    height: auto;
    padding: 0.5rem 0.5rem;
    line-height: 1.7;
}
.login-box .card .input-container {
    position: relative;
}
.login-box .card .btn-toggle {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 32px;
	height: 32px;
    padding: 0.25rem 0.45rem;
}
.auth .card .form-control.has-button {
	padding-right: calc(1.50em + 0.75rem);
}
.auth .card .was-validated .form-control.has-button:valid,
.auth .card .form-control.has-button.is-valid,
.auth .card .was-validated .form-control.has-button:invalid,
.auth .card .form-control.has-button.is-invalid {
    padding-right: calc(3.50em + 0.75rem);
}
.login-box .card .btn-toggle:hover,
.login-box .card .btn-change:hover {
    color: #212529;
    background-color: #e2e6ea;
    border-color: #dae0e5;
}
.login-box .card .show-pw:before {
    content: '\f06e';
    font-family: 'Font Awesome 5 Free';
	font-weight: 400;
}
.login-box .card .hide-pw:before {
    content: '\f070';
    font-family: 'Font Awesome 5 Free';
	font-weight: 400;
}
.login-box .nav {
	margin-top: 1rem;
	font-weight: 300;
	color: #474747;
}