﻿@font-face {
    font-family: Roboto;
    src: url(../Content/font/Roboto-Regular.ttf);
}

@font-face {
    font-family: Roboto;
    src: url(../Content/font/Roboto-Medium.ttf);
    font-weight: 500;
}

@font-face {
    font-family: Roboto;
    src: url(../Content/font/Roboto-Bold.ttf);
    font-weight: 700;
}

html {
    font-size: 16px;
    color: #323635;
}

h1,h2,h3,h4,h5 {
    font-family: Roboto, 'Times New Roman', Arial, sans-serif;
}

h1 {
    font-size: 28px;
    color: #323635;
    font-weight: 700;
}

a {
    color: #323635;
}
    a:hover {
        color: #323635;
        text-decoration: none;
    }

h2 {
    font-size: 20px;
    line-height: 20px;
    color: #323635;
    font-weight: 400;
}

.h5 {
    color: #323635;
    font-size: 20px;
}

body {
    font-family: Roboto, Arial, sans-serif;
    min-height:100vh;
    display:flex;
    flex-direction:column;
    background-image: url('Images/client_login_bg_desktop.png');
    background-size: auto 70vh;
    background-repeat: repeat-x;
    background-position: top center;
    background-color: #EDF2F2;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
}

footer {
    min-height: 36px;
    line-height: 36px;
    font-size: 14px;
    color: #707070;
    background-color: #FFFFFF;
}

.desktop-footer {
    display: block;
}

.mobile-footer {
    display: none;
}

.content {
    background-color: #FFFFFF;
    border-radius: 40px;
    box-shadow: #0000001A 0 3px 6px;
    padding:20px;
}

.login-input {
    background-color: #EDF2F2;
    border-radius: 40px;
    padding: 8px 16px;
    border: 1px solid #EDF2F2;
    font-size: 16px;
    font-weight: normal;
    color: #757575;
    box-shadow: #0000001A 0 3px 6px;
}

.btn-login {
    color: #FFFFFF;
    background-color: #323635;
    text-transform: capitalize;
    border-radius: 40px;
    box-shadow: 0px 3px 6px #0000001A;
    padding: 12px 48px;
}
    .btn-login:hover {
        color: #FFFFFF;
        background-color: #000;
    }

.findParkingMessage {
    font-size: 16px;
    color: #323635;
}
    .findParkingMessage a, .findParkingMessage a:hover {
        color: #00645D;
    }

.btn-language {
    color: #323635;
    background-color: #FFFFFF;
    text-transform: capitalize;
    border-radius: 40px;
    box-shadow: 0px 3px 6px #0000001A;
    padding: 8px 25px;
}
    .btn-language.active, .btn-language:hover {
        color: #FFFFFF;
        background-color: #323635;
    }

.btn-rounded {
    border-radius: 40px;
}

@media only screen and (max-width: 750px) {
    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 16px;
    }

    .container-fluid {
        padding:0;
    }

    .h5 {
        font-size: 16px;
        font-weight: 400;
    }

    .login-input {
        box-shadow: none;
    }

    .btn-mobile-full {
        width: 100%;
    }

    .findParkingMessage {
        font-size: 16px;
    }

    footer {
        background: none;
        min-height: unset;
        font-size: 10px;
        text-align: center;
        line-height: 24px;
    }

        footer a {
            font-size: 12px;
            color: #757575;
        }

    .desktop-footer {
        display: none;
    }

    .mobile-footer {
        display: block;
    }

    .mobile-footer img {
        width: 180px;
    }
}

/***************************
    ANIMATED BACKGROUND
****************************/

#bgVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -2;
}

#bgWhite {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    z-index: -1;
    background-color: #EDF2F2;
}

.btn-pause {
    color: #EDF2F2;
    font-size: 32px;
    padding: 0 8px;
}
    .btn-pause:active, .btn-pause:focus, .btn-pause:hover {
        color: #EDF2F2;
    }

#bgPause {
    position: fixed;
    top: 10px;
    right: 10px;
}

@media only screen and (max-width: 750px) {
    #bgPause {
        top: 0;
        right: 0;
    }
}