/*!

 =========================================================
 * 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;
    justify-content: center;
    background-image: url('../img/background.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat; 
    height: 100vh; 
    margin: 0;
}
a{
    color: #009DFE;
    text-decoration: none;
}
a:hover{
    color: #003159;
}
.uf-form-signin {
    width: 100%;
    max-width: 350px;
    padding: 15px;
    margin: auto;
}
.uf-input-group .input-group-text {
    background: #003159;
    color: #f8f9fa;
    border: unset;
    font-size: 18px;
    padding: 15px;
    width: 50px;
}

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

.uf-input-group .form-control:focus {
    box-shadow: unset;
    border: 1px solid #003159;
    background: #ffffff05;	
}
.uf-form-signin .form-check {
    color: #FF8C8C;
}
.uf-btn-primary {
    background: #009DFE;
    color: #fff;
}

.uf-btn-primary:hover {
    background: #003159;
    color: #fff;
}

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

.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: #009DFE;
}
.uf-social-ic:hover i{
    color: #fff;
}

.uf-form-signin-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}