/*@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');*/

:root {
    --primaryGreen: #008b45;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: local(''),
        url('../fonts/roboto-v29-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
        url('../fonts/roboto-v29-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

@media (max-width: 800px) {


    .loginContent {
        flex-direction: column;
        overflow-y: auto !important;
    }

    .loginPanelInfoItem {
        flex: none !important;
        flex-direction: row !important;
    }

    .loginpanel {
        flex: none;
        width: 100%;
    }

    .loginPanelInfoItem .logo {
        height: 90px !important;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

a {
    color: black;
    text-decoration: underline;
}

a:hover, a:focus, a:visited, a:active {
    color: black;
    text-decoration: underline;
}

body {
    background-color: #F5F5F5;
    background-image: url('../images/background/bg8.jpg');
    background-size: cover;
}

.card-1 {
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.messageContainer {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.message {
    text-align: center;
    margin: 3px !important;
    padding: 3px !important;
    border-radius: 8px !important;
}

.loginContent {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    background-color: #fff;
    max-width: 800px;
    width: 100%;
    min-height: 500px;
}

.logininput {
    box-sizing: border-box;
    width: 100%;
    padding: 10px 10px 10px 10px;
    border-top: 0px solid #e5e5e5;
    border-left: 0px solid #e5e5e5;
    border-right: 0px solid #e5e5e5;
    border-bottom: 2px solid #e5e5e5;
}

.logininput:hover {
    border-color: #097753;
}

.logininput:active {
    border-color: #097753;
}

.loginpanel {
    flex: 2;
    padding: 5%;
    min-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.loginPanelInfoItem {
    background-color: #2c3e50;
    color: #fff;
    padding: 5%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.loginPanelInfoItem .logo {
    height: 120px;
}

.loginPanelInfoItem h1 {
    margin-top: 20px;
    text-align: center;
}

.loginPanelInfoItem p {
    padding-top: 20px;
    text-align: center;
    font-size: 16px;
}

.loginPanelForm {
    flex: 0 1 calc(70%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loginPanelForm h1 {
    text-align: left;
    margin-bottom: 15px;
    color: #097753;
}

.loginPanelForm h2 {
    text-align: left;
    margin-top: -15px;
    padding-bottom: 20px;
    color: #000;
    font-size: 1rem;
}

.loginPanelForm {
    padding: 1%;
}

.logo {
    height: 100px;
}

.btn {
    position: relative;

    display: block;
    margin: 20px auto;
    padding: 0;
    width: 100%;
    height: 35px;
    overflow: hidden;

    border-width: 0;
    outline: none;
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .6);

    background-color: #097753;
    color: #ecf0f1;

    transition: background-color .3s;
}

.btn:hover, .btn:focus {
    background-color: #2D3E50;
}

.btn > * {
    position: relative;
}

.btn span {
    display: block;
    padding: 12px 24px;
}

.btn:before {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

    display: block;
    width: 0;
    padding-top: 0;

    border-radius: 100%;

    background-color: rgba(236, 240, 241, .3);

    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.btn:active:before {
    width: 120%;
    padding-top: 120%;

    transition: width .2s ease-out, padding-top .2s ease-out;
}

.borderless {
    border: none;
}

i {
    color: #969696;
}

.panelMobileWarning {
    display: flex;
    background-color: #FF8E8E;
    color: #000;
    border: 2px solid #FF3333;
    border-radius: 8px !important;
    margin: 0px !important;
    padding: 5px !important;
    font-family: 'Roboto', sans-serif;
    text-align: center;
}

@keyframes fadeinFromLeft {
    0%
    {
        left: -50%;
    }
    50%
    {
        left: 60%;
    }
    100%
    {
        left: 50%;
    }
}
@keyframes fadeinFromRight {
    0%
    {
        left: 150%;
    }
    50%
    {
        left: 40%;
    }
    100%
    {
        left: 50%;
    }
}
@keyframes fadeinFromTop {
    from
    {
        opacity: 0;
    }
    to
    {
        opacity: 1;
    }
}