﻿html,
body {
    height: 100%;
}

body {
    background-color: #5785c3;
}

.row {
    margin-right: 0px;
    margin-left: 0px;
}

.login-background {
    background-image: url('/login-background-tile.png');
    background-repeat: repeat-x;
    width: 100%;
    height: 100%;
}

.login-container {
    background-image: url('/login-background.jpg');
    background-repeat: no-repeat;
    background-position: top left;
    width: 100%;
    height: 100%;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.login-page {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

.carousel {
    background: #607793;
    min-height: 500px;
    height: 100%;
    border-radius: 12px;
    z-index: 1;
    box-shadow: 0px 0px 30px #a1b8d8;
}

.slide {
    padding: 24px;
}

h4 {
    margin-bottom: 24px;
}

.form {
    z-index: 0;
    background: #fff;
    width: 100%;
    min-height: 466px;
    height: calc(100% - 34px);
    box-shadow: 0px 15px 40px #a1b8d8;
    -webkit-border-top-right-radius: 12px;
    -webkit-border-bottom-right-radius: 12px;
    -moz-border-radius-topright: 12px;
    -moz-border-radius-bottomright: 12px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 36px;
    margin-top: 17px;
}

.no-padding {
    padding-right: 0;
    padding-left: 0;
}

.btn-primary {
    background: #607793;
    border-color: #607793;
    width: 100%;
}

.separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 24px;
    margin-bottom: 24px;
    color: #b3b3b3;
}

.separator::before,
.separator::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #b3b3b3;
}

.separator::before {
    margin-right: 0.25em;
}

.separator::after {
    margin-left: 0.25em;
}

.external-providers {
    flex-direction: row;
    box-sizing: border-box;
    display: flex;
    margin-right: -12px;
}

.btn-outline-primary {
    flex: 1 1 100%;
    box-sizing: border-box;
    max-width: 100%;
    margin-right: 12px;
}

.btn-outline-primary img {
    margin-top: -3px;
}

@media (max-width: 768px) {
    .left-panel {
        display: none;
    }

    .right-panel {
        padding-left: 12px;
        padding-right: 12px;
    }

    .form {
        -webkit-border-top-left-radius: 12px;
        -webkit-border-bottom-left-radius: 12px;
        -moz-border-radius-topleft: 12px;
        -moz-border-radius-bottomleft: 12px;
        border-top-left-radius: 12px;
        border-bottom-left-radius: 12px;
    }
}