/*!

 =========================================================
 * Login Form Bootstrap 1
 =========================================================

 * Product Page: https://uifresh.net
 * Copyright 2021 UIFresh (https://uifresh.net)
 * Coded by UIFresh

 =========================================================

 * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

 */
html, body{
	height: 100%;
}
body{
	display: flex;
	align-items: center;
    /* Changing background in login form 
	background-image: url("../img/hero-bg.png");*/
    background-image: linear-gradient(white);
    background: white;
}
/* Changing placeholder's color in login form */
.uf-input-group .form-control::placeholder {
    color: var(--bs-blue-800);
    font-weight: normal;
}

.dropdown-divider {
    border-top: 1px solid var(--bs-blue-800) !important;
}

a{
	color: #150517;
	text-decoration: none;
}
a:hover{
	/*color: color-mix(in srgb, #150517, transparent 20%);*/
    color: var(--bs-blue-700);
}
.uf-form-signin {
    width: 100%;
    max-width: 350px;
    padding: 15px;
    margin: auto;
}

div.input-group {
    border: 1px solid var(--bs-blue-900);
    border-radius: 0.5rem;
}

.uf-input-group .input-group-text {
    background: white;
    color: var(--bs-blue-800);
    border: none;
    font-size: 18px;
    padding: 0.5rem 0.4rem 0.5rem 0.9rem;
    width: 2.5rem;
}

.uf-input-group .form-control {
    font-size: 1rem;
    border: none;
    background: #ffffff;
    color: var(--bs-blue-800);
    /*font-weight: bold;*/
}

input.form-control {
    padding-left: 1rem !important;
}

.uf-input-group .form-control:focus {
    box-shadow: unset;
    background: color-mix(in srgb, #ffffff70, transparent 5%);
}
.uf-btn-primary {
    background: linear-gradient(10deg,var(--bs-blue-500), var(--bs-blue-800));
    border: 1px solid black;
    color: white;
}

.uf-btn-primary:hover {
    background: linear-gradient(0deg,var(--bs-blue-500), var(--bs-blue-800));
    color: white;
}

.uf-form-check-input:checked {
    background-color: #842029;
    border-color: #842029;
}

.uf-social-login .uf-social-ic+.uf-social-ic{
	margin-left: 15px;
}
.uf-social-ic{
	width: 40px;
	height: 40px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.uf-social-ic:hover{
	background: linear-gradient(10deg,var(--bs-blue-500), var(--bs-blue-800));
    color: white !important;
}
.uf-social-ic:hover i{
	color: #fff;
}
