/*!

 =========================================================
 * 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:#150517;
}

.dropdown-divider {
    border-top: 1px solid #150517 !important;
}

a{
	color: #150517;
	text-decoration: none;
}
a:hover{
	color: color-mix(in srgb, #150517, transparent 20%);
}
.uf-form-signin {
    width: 100%;
    max-width: 350px;
    padding: 15px;
    margin: auto;
}
.uf-input-group .input-group-text {
    background: #ffffff;
    color: gray;
    border: 1px solid #150517;
    border-right: 1px solid #ffffff05;
    font-size: 18px;
    padding: 15px;
    width: 50px;
}

.uf-input-group .form-control {
    border: 1px solid #150517;
    border-left: 1px solid #ffffff05;
    font-size: 16px;
    background: #ffffff;
}

.uf-input-group .form-control:focus {
    box-shadow: unset;
    background: color-mix(in srgb, #ffffffcb, transparent 5%);
}
.uf-btn-primary {
    background: color-mix(in srgb, rgba(18,211,201,1), transparent 80%);
    color: white;
    border: 1px solid #150517;
}

.uf-btn-primary:hover {
    background: color-mix(in srgb, rgb(18, 182, 211), transparent 2%);
    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(45deg, #2937f0, #9f1ae2);
}
.uf-social-ic:hover i{
	color: #fff;
}
