﻿@font-face {
    font-family: Roboto;
    src: url(../Content/fonts/Roboto-Regular.ttf);
}

@font-face {
    font-family: Roboto;
    src: url(../Content/fonts/Roboto-Medium.ttf);
    font-weight: 500;
}

@font-face {
    font-family: Roboto;
    src: url(../Content/fonts/Roboto-Bold.ttf);
    font-weight: 700;
}

@font-face {
    font-family: Futura;
    src: url(../Content/fonts/FuturaPTLight.otf);
    font-weight: 300;
}

@font-face {
    font-family: Futura;
    src: url(../Content/fonts/FuturaPTMedium.otf);
    font-weight: 500;
}

html {
    height: 100%;
    font-size: 16px;
    color: #323635;    
}

h1, h2, h3, h4, h5 {
    font-family: "Inter", Arial, sans-serif;
}

h1 {
    font-size: 28px;
    color: #323635;
    font-weight: 700;
}

a, a:hover, a:active {
    color: #00645D;
}

    a:hover {
        text-decoration: none;
    }

h2 {
    font-size: 20px;
    line-height: 20px;
    color: #323635;
    font-weight: 400;
}

.h5 {
    color: #323635;
    font-size: 20px;
}

body {
    font-family: "Inter", Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    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;
}

.login-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-primary {
    background: rgba(0,106,97,1);
    border-color: rgba(0,106,97,1);
}

    .btn-primary:hover, .btn-primary:active, btn-primary:focus {
        background: rgb(0 86 79);
        border-color: background: rgb(0 86 79);
    }

.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-content {
        border-radius: unset;
        box-shadow: unset;
        padding: unset;
    }

    .login-input {
        box-shadow: none;
    }

    .btn-mobile-full {
        width: 100%;
    }

    .findParkingMessage {
        font-size: 16px;
    }

    footer {
        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;
        font-size: 12px;
    }
        .mobile-footer a {
            color: #212121;
        }
            .mobile-footer a:active, .mobile-footer a:focus, .mobile-footer a:hover {
                color: #00645D;
                text-decoration: none;
            }
}