﻿@font-face {
   src:url("../fonts/source-sans-pro/SourceSansPro-Bold.ttf");
   font-family: "Source Sans Pro";
}

body {
    background-color: #f7f7f7;
    background-image: url("../images/loginBackground.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.overflow {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    height: 100vh;
    width: 100vw;
}

* {
    transition: 250ms ease;
}

.container.login,
.container.login .row {
    height: 100vh;
}

.login .card {
    transition: 500ms ease;
    border: none;
    height: 450px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-radius: 0;
    flex-direction: column;
    background-color: #f2f2f2;
    padding-bottom: 50px;
}

.card h2 {
    font-weight: bold;
    font-family: "Source Sans Pro";
}

.login .btn-rised {
    display: inline;
    padding: 12px 30px;
    border-radius: 0;
    border: 1px solid #222;
    color: #222;
    font-size: 110%;
    /* color: green; */
    background-color: #f2f2f2;
}

.login .card {
    box-shadow: 0 30px 60px rgba(0,0,0, 0.16);
}

.login .btn-rised {
    box-shadow: 0 3px 8px rgba(20, 62, 168, 0.25);
}

    .login .btn-rised:hover {
        background-color: #f9f9f9;
        box-shadow: 0 5px 13px rgba(20, 62, 168, 0.1);
    }

.btn-rised .fab {
    padding-right: 10px;
}

.btn-rised:hover .fab {
    transform: translateX(-10px);
}

.card:hover {
    transform: translateY(0px);
}

#abidat {
    font-weight: 560;
    text-decoration: none;
    color: inherit;
}

    #abidat:hover {
        text-decoration: underline;
        color: gray;
    }
