﻿/*
*
* ==========================================
* CUSTOM UTIL CLASSES
* ==========================================
*
*/
/*.login,*/
.image {
    min-height: 100vh;
    max-width: 650px
}

.bg-image {
    background-size: cover;
    background-position: center center;
    /*background-image: url('../images/DefaultApp.jpg');*/
    background-image: url('../images/defaultapp.jpg');
}

.card-body {
    text-align: center;
    background: white;
    box-shadow: 0px 0px 0px grey;
    -webkit-transition: box-shadow .6s ease-out;
    box-shadow: .0px .9px 3px grey;
    outline: none;
    border: none;
}

    .card-body:hover {
        box-shadow: 1px 8px 20px grey;
        -webkit-transition: box-shadow .6s ease-in;
    }
