#login-wrapper,
#register-wrapper{
    height: calc(100vh - 200px);
}

#main-navbar{
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 0;
}

@media (min-width: 992px) {
    #main-navbar{
        padding: 0;
    }

    #main-navbar .nav-link{
        position: relative;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    #main-navbar .nav-link.active:after{
        content: '';
        position: absolute;
        width: 100%;
        bottom: 0;
        height: 2px;
        border-radius: 2px;
        background: #000;
        left: 0;
    }

    #main-navbar .nav-link.dropdown-toggle.active:after{
        display: block;
    }
}

#main-navbar .nav-link.dropdown-toggle:after{
    display: none;
}

#main-navbar .nav-link.dropdown-toggle svg{
    position: relative;
    top: -1px;
    width: 12px;
    height: 15px;
}

.navbar-brand{
    margin-right: 40px;
}

.navbar-brand svg{
    width: 150px;
    position: relative;
    top: -2px;
}

.navbar-brand svg .cls-1 {
    fill: #00a6e4;
}

.navbar-brand svg .cls-2 {
    fill: #ff6900;
}

.navbar-brand svg .cls-3 {
    fill: #000;
}

.card{
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 0;
}

.alert {
    background-color: #fff;
    border: 0;
    padding-left: 45px;
    -webkit-box-shadow: 0 5px 8px -6px rgba(0,0,0,.2);
    -moz-box-shadow: 0 5px 8px -6px rgba(0,0,0,.2);
    box-shadow: 0 5px 8px -6px rgba(0,0,0,.2);
}

.alert-icon{
    position: absolute;
    left: 0px;
    width: 35px;
    height: 100%;
    display: flex;
    justify-content: center;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    align-items: center;
}

.alert-icon svg{
    fill: #fff;
    width: 22px;
    height: 22px;
}

.alert-success .alert-icon{
    background: #80D651;
}

.alert-info .alert-icon{
    background: #45ABCD;
}

.alert-warning .alert-icon{
    background: #FEAF20;
}

.alert-danger .alert-icon{
    background: #d73814;
}