﻿
/* Layout */
body {
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

@media only screen and (max-width: 439px) {
    body {
        background-image: none;
    }
}

main {
    background: #FFF;
    position: relative;
}

#ProgrammeLogo {
    background-image: url('./images/programme-logo.png');
    height: 120px;
    margin: 40px auto 40px auto;
}

/* Content */
.link-group a, .link-group li {
    color: black;
}

.link-group {
    margin-top: 0px !important;
}

    .link-group a:hover, .link-group a:active, .link-group li:hover, .link-group li:active {
        color: black;
    }

#IdentityLinks {
    font-size: .9em;
}

.control-label {
    color: black;
    font-weight: bold;
}

.btn {
    color: #fff;
    font-weight: bold;
}

.btn:hover {
    background-image: linear-gradient(to right, #94003b, #520049) !important;
    color: #fff
}

.btn-primary {
    color: #fff;
    background-image: linear-gradient(to right, #d50056, #950085);
    border: none;
    border-radius: 24px;
}

.btn-outline-light {
    color: #d50056;
    background: #fff;
    border: 1px solid #d50056;
    border-radius: 24px;
    transition: none;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #011d29 !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;
}

#ExternalAuth a.btn{
    line-height: 30px;
}

#IdentityLinks li:last-child {
    border-bottom: 1px solid #fff;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
}



