/*-------------------------------------- Fonts --------------------------------------*/
@font-face {
    font-family: 'Kia Signature';
    src: url(../fonts/KiaSignatureOTFRegular.otf) format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Kia Signature';
    src: url(../fonts/KiaSignatureOTFBold.otf) format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Kia Signature';
    src: url(../fonts/KiaSignatureOTFLight.otf) format('opentype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Kia Signature';
    src: url(../fonts/KiaSignatureLight.ttf) format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Kia Signature';
    src: url(../fonts/KiaSignatureBold.ttf) format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Kia Signature';
    src: url(../fonts/KiaSignatureRegular.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}
/*-------------------------------------- Fonts END --------------------------------------*/

/*-------------------------------------- Global Styles --------------------------------------*/
* {
    outline: none !important;
}

html {
    position: relative;
    min-height: 100%;
    font-size: 14px;
}

body {
    margin-bottom: 200px;
    font-family: 'Kia Signature', sans-serif;
    color: #05141f;
    background: url(https://afsocdnstorage.blob.core.windows.net/cdn/PortalKMF/kiaPortalBodyBCKG.png);
    background-size: cover;
}

.white-wrapper {
    border-radius: 10px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    padding: 30px 20px;
    margin-top: 50px;
    margin-bottom: 50px;
}

header nav {
    background-color: #fff !important;
    height: 100px;
    border-bottom: 1px solid #e7e7e7 !important;
    border-top: 1px solid #e7e7e7 !important;
}

.portal-logo {
    width: 300px;
}

.log-in ul {
    display: block;
    width: 100%;
    text-align: right;
}

a.nav-link.text-dark {
    font-size: 14px;
    display: inline-block;
}
a.nav-link.text-dark:hover {
    text-decoration: underline;
}

form.form-inline {
    display: inline-block;
}

    form.form-inline button {
        font-size: 12px;
        text-transform: uppercase;
        color: #c7c8ca !important;
        font-weight: 700;
    }
    form.form-inline button.btn:focus {
        box-shadow: unset !important;
    }
    form.form-inline button:hover {
        color: #fff !important;
        background-color: #05141f !important;
    }
#login {
    font-size: 12px;
    text-transform: uppercase;
    color: #c7c8ca !important;
    font-weight: 700;
    border-radius: 8px;
}

    #login:hover {
        color: #fff !important;
        background-color: #05141f !important;
        text-decoration: unset !important;
    }
footer {
    background-color: #05141f;
}

    footer .container {
        color: #fff !important;
        text-align: center;
    }

    footer img {
        width: 8vw;
        position: relative;
        top: -20px;
    }
/*-------------------------------------- Global Styles END --------------------------------------*/

/*-------------------------------------- Media Queries --------------------------------------*/
@media (max-width: 767px) {
    footer img {
        width: 30%;
    }
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}
/*-------------------------------------- Media Queries END --------------------------------------*/
