.homePage{
    display:flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}
.homePage img{
    width: 20%;
}

#loginPage {
    margin: 0;
    padding: 0;
    height: 100%;
    background: #f0f0f0;
}
#loginPage .user_card {
    height: 400px;
    width: 350px;
    margin-top: auto;
    margin-bottom: auto;
    background: #d2dae2;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 5px;

}
#loginPage .brand_logo_container {
    position: absolute;
    height: 170px;
    width: 170px;
    top: -75px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    text-align: center;
    overflow: hidden;
    background: #ffffff;
}
#loginPage .brand_logo {
    height: 150px;
    width: 150px;
    border: 2px solid white;
    background: #ffffff;
}
#loginPage .brand_logo_container img{
    width: 80%;
    height: 80%;
}
#loginPage .form_container {
    margin-top: 100px;
}
#loginPage .login_btn {
    width: 100%;
    background: #2980b9;
    color: white;
}
#loginPage .login_btn:focus {
    box-shadow: none;
    outline: 0px;
}
#loginPage .login_container {
    padding: 0 2rem;
}
#loginPage .input-group-text {
    background: #2980b9;
    color: white;
    border: 0;
    border-radius: 0.25rem 0 0 0.25rem;
}
#loginPage .input_user,
#loginPage .input_pass:focus {
    box-shadow: none;
    outline: 0px;
}
#loginPage .custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #2980b9;
}

