﻿.landing-page-body {
    font-family: Arial, 'Arimo', sans-serif;
    background-color: #252d33;
    font-size: 15px;
    color: white;
    border: 0;
    padding: 0;
    margin: 0;
    height: 100%;
}

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

.landing-page-error-content {
    text-align: center;
    height: 126px;
    padding: 0 9px;
}

/* Welcome page */
.landing-page-body.welcome-page {
    text-align: center;
}

.landing-page-body.welcome-page h1 {
    font-size: 17px;
    margin-bottom: 9px;
}

.landing-page-body.welcome-page h2 {
    font-size: 17px;
    font-weight: normal;
    color: #858B91;
    margin-top: 9px;
    margin-bottom: 63px;
}

.landing-page-body.welcome-page p {
    font-size: 15px;
    color: #858B91;
    margin-top: 9px;
    margin-bottom: 36px;
}

.landing-page-body.welcome-page a {
    color: #5282B8;
    font-weight: bold;
    font-size: 17px;
}

.landing-page-body.welcome-page .footer-info {
    margin-top: 72px;
    margin-bottom: 6px;
}

.landing-page-body.welcome-page .img-container img {
    margin-right: 9px;
}

.landing-page-body--login .landing-page-container {
    box-sizing: border-box;
    max-width: 346px;
    margin: auto;
}
.landing-page-body--login .landing-page-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

/* ------ */

form {
    position: relative;
    width: 100%;
    max-width: 346px;
    text-align: center;
}

.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #505e6b;
    opacity: 1; /* Firefox */
}

label {
    display: inline-block;
    position: relative;
}

a.primary {
    background-color: #505e6b;
    color: #fff;
    border: 0px;
    margin-top: 21px;
    text-align: center;
}

.footer-info {
    margin-top: 45px;
    color: #B6B8B9;
    text-align: center;
}

.title {
    font-weight: bold;
    text-align: left;
}

a.primary:hover {
    opacity: 0.5;
}

.asp-validation ul {
    list-style-type: none;
    padding: 0;
}

.login-button {
    text-decoration: none;
    display: block;
    line-height: 36px;
    background-color: #505e6b;
    color: #fff;
    width: 100%;
    font-size: 15px;
    border-radius: 5px;
    border: 0;
}

.login-button:hover {
    cursor: pointer;
    opacity: 0.5;
}

.login-button.loading {
    opacity: 0.5;
    cursor: progress;
}

.atlas-logo {
    background-image: url("../images/group-10@2x.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 80px;
    width: 167px;
    margin-bottom: 18px;
    max-width: 100%;
}

.error-img {
    background-image: url("../images/error@2x.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 36px;
}


@media (max-width: 767px) {
    .topbar {
        height: 58px;
    }
    .topbar .navbar-brand {
        line-height: 58px;
    }
    #content > .form-control {
        height: 54px;
        font-size: 18px;
    }

    .login-button {
        line-height: 54px;
    }

    .topbar:after {
        margin-top: 52px !important;
    }

    .atlas-logo {
        display: none;
    }

    .landing-page-body--login .landing-page-container {
        max-width: initial;
        padding: 0 9px;
    }
    .landing-page-body--login .landing-page-content {
        justify-content: space-between;
        height: 100%; 
    }
    .landing-page-body--login .landing-page-error-content {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    .landing-page-body--login form {
        max-width: initial;       
        flex-grow: 2;
    }
}