﻿:root {
    --primary-color: #009fab;
}

html,
body {
    height: 100%;
}

body {
    padding: 80px 0;
}

h2 {
    font-size: 22px;
    color: white;
}

.abook-background {
    background-image: url(/images/bg-billede.jpg);
    position: absolute;
    background-size: contain;
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.abook-logo {
    position: absolute;
    left: 65px;
    top: 45px;
    z-index: -1;
}

.abook-kk-logo {
    background-color: transparent;
    height: 120px;
    width: 120px;
    position: absolute;
    left: 65px;
    top: 45px;
    background: url(/images/KBH_Maerke_DK_White_RGB.png) no-repeat;
    background-size: contain;
}

.abook-footer {
    height: 80px;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: url(/images/Logo_A-book.png) no-repeat #009fab left 65px top 25px;
    background-color: var(--primary-color);
    background-size: 93px 25px;
}

.abook-header {
    height: 80px;
    background-color: var(--primary-color);
    margin: auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-container {
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: center;
}

.login-form {
    width: 340px;
}

    .login-form form {
        margin-bottom: 15px;
        background: #f7f7f7;
        box-shadow: 4px 9px 30px 0px rgb(0 0 0 / 20%);
    }

    .login-form h2 {
        margin: 0;
    }

    .login-form .form-body {
        padding: 30px;
    }


ul {
    padding-inline-start: 20px;
}

.btn {
    color: #FFF;
    background-color: var(--primary-color);
    padding: 10px 15px;
    border-radius: 0px;
    -o-transition: 0.3s all;
    transition: 0.3s all;
}

    .btn:hover {
        color: #FFF;
        background-color: #0f8792;
    }

@media (max-width: 767px) {
    body {
    }

    .abook-kk-logo {
        height: 75px;
        width: 75px;
        left: 15px;
        top: 15px;
    }

    .page-container {
        padding: 15px;
        display: flex;
        justify-content: center;
        height: 100%;
        align-items: center;
    }

    .abook-header {
        height: 60px;
    }

    .login-form h2 {
        margin: 0;
        font-size: 18px;
    }

        .login-form form {
            margin-bottom: 15px;
            background: #f7f7f7;
            box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
            padding: 30px 15px;
            padding-top: 15px;
        }
}
a {
    transition: 0.3s all;
}

.external-auth a {
    background: #DAEBEE;
    padding: 15px;
    width: 100%;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    background-image: url(/images/arrow_right.svg);
    background-repeat: no-repeat;
    background-position: right 20px bottom 14px;
}

    .external-auth a:hover {
        background-color: #c0e6ed;
    }