﻿@font-face {
    font-family: 'NotoSans-Medium';
    src: url('./fonts/NotoSans-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSans-Regular';
    src: url('./fonts/NotoSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


/* Layout */
body {
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'NotoSans-Regular', -apple-system, 'Segoe UI', sans-serif;
}

@media only screen and (max-width: 439px) {
    body {
        background-image: none;
    }
}

main {
    background: #00665E;
    position: relative;
}

#ProgrammeLogo {
    background-image: url('./images/programme-logo.png');
    height: 50px;
    margin: 40px auto 40px auto;
}

/* Content */
.link-group a, .link-group li {
    color: #fff;
}

.link-group {
    margin-top: 0px !important;
}

    .link-group a:hover, .link-group a:active, .link-group li:hover, .link-group li:active {
        color: #fff;
    }

#IdentityLinks {
    font-size: .9em;
}

.control-label {
    color: #fff;
    text-transform: uppercase;
}

.btn {
    border-color: #fff !important;
    color: #fff;
}
.form-control {
    background-color: rgba(255, 255, 255, 0.3) !important;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid #00665E;
    height:45px;
}


    .form-control:hover,
    .form-control:focus,
    .form-control:active {
        color: rgba(255, 255, 255, 0.9) !important;
    }

.btn-primary {
    color: #00665E;
    background-color: #fff;
}

.btn-local-login {
    display: none;
}

.inline-local-login {
    display: inline;
}

.btn-outline-light {
    color: black;
    background: #eee;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #00665E !important;
}

.btn-secondary {
    color: black;
    background-color: #fff;
}

    .btn-secondary:hover,
    .btn-secondary:focus,
    .btn-secondary:active {
        color: #fff !important;
        background-color: #eee !important;
    }

#ExternalAuth {
    border-bottom: 1px solid #fff;
}

#IdentityLinks li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
}

input::placeholder {
    color: #eee !important;
    opacity: 1 !important;
}


footer {
    background-color: #eeeeee !important;
}