﻿body {
    height: 100vh;
    padding: 0px;
    margin: 0px;
}

#msform fieldset:not(:first-of-type) {
    display: none
}

.user_card {
    height: 400px;
    width: 350px;
    margin-top: auto;
    margin-bottom: auto;
    background: #fffefe;
    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;
}

.brand_logo_container {
    position: absolute;
    height: 170px;
    width: 170px;
    top: -75px;
    border-radius: 50%;
    background: #ffffff;
    border-bottom: dotted #c1baba;
    padding: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    align-content: center;
}

.brand_logo {
    width: 130px;
    margin: 0 auto;
}

.form_container {
    margin-top: 70px;
}

.login_btn {
    width: 100%;
    background: #29abe2 !important;
    color: white !important;
}

    .login_btn:focus {
        box-shadow: none !important;
        outline: 0px !important;
    }

.login_container {
    padding: 0 2rem;
}

.input-group-text {
    background: #29abe2 !important;
    color: white !important;
    border: 0 !important;
    border-radius: 0.25rem 0 0 0.25rem !important;
}

.input-icon i {
    display: none;
}

.input_user,
.input_pass:focus {
    box-shadow: none !important;
    outline: 0px !important;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #c0392b !important;
}

.loader-login {
    height: 100px;
    width: 100px;
    overflow: hidden;
    position: absolute;
    z-index: 5;
    top:82px;
}

    .loader-login > div {
        height: 75px;
        width: 75px;
        border: 15px solid #45474b;
        border-top-color: #2a88e6;
        position: absolute;
        margin: auto;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 50%;
        animation: spin 1.5s infinite linear;
    }

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}
