﻿/*ul.nav li a, ul.nav li a:visited {
    color: green !important;
}

    ul.nav li a:hover, ul.nav li a:active {
        color: green !important;
    }

ul.nav li.active a {
    color: green !important;
}*/

a, a:visited, a:hover, a:active {
    color: green !important;
    font-weight: bold;
}

button {
    background-color: green !important;
    color: white !important;
    font-weight: bold;
}



.primary-color {
    color: #157935;
}

.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

    .page-container .body-container {
        flex: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

.login-page {
    margin: 0 15%;
}
@media only screen and (max-width: 700px) {
    .login-page {
        margin: 0;
    }
    .container {
         padding-right: 3px;
         padding-left: 3px;
    }
}

.login-page-subtitle {
    margin-bottom: 25px;
}

.login-options-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 20px;
}

    .login-options-container *:first-child {
        border-radius: 3px 0 0 3px;
    }

    .login-options-container *:last-child {
        border-radius: 0 3px 3px 0;
    }

    .login-options-container a,
    .login-options-container span {
        flex: 0.5;
        text-align: center;
        font-weight: normal;
        border: 1px solid #d2d2d2;
        height: 45px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .login-options-container a {
        background-color: #f0f0f0;
        color: #363636 !important
    }

    .login-options-container span {
        background-color: #157935;
        color: white !important;
        border: none;
    }

.login-button {
    width: 100%;
    height: 50px;
    font-weight: bold !important;
    margin-top: 15px;
    background-color: #157935 !important;
}

input[type=text],
input[type=password],
input[type=number] {
    height: 50px;
}

.external-login-separator {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 30px;
}

    .external-login-separator .horizontal-line {
        border-top: 1px solid;
        flex: 1;
        margin: 0 20px;
        height: 0;
    }

.external-login-buttons {
    display: flex;
    justify-content: center;
}

    .external-login-buttons button {
        background-color: white !important;
        color: #313131 !important;
        border: 1px solid #7b7b7b;
        border-radius: 0;
    }

a.home-button {
    display: flex;
    flex-direction: row;
}

span.vertical-line {
    border-left: 1px solid #37424a;
    align-self: stretch;
    margin: 0 30px;
}

span.section-name {
    color: #37424a;
    align-self: center;
}

.name-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

    .name-container div {
        flex: 0.48;
    }
.navbar-brand.home-button img {
    height: 50px;
}
.login-options-container .register-buttons {
    height: 30px
}
@media only screen and (max-width: 700px) {
    .name-container {
        display: block;
    }
    .form-group {
        margin-bottom: 0;
    }
    .login-options-container {
        margin-bottom: 0;
    }
    .navbar-brand.home-button img {
        height: 30px;
    }
    .navbar {
        padding:1px 2px 1px 2px;
        justify-content:center;
    }
    .login-page-title h3 {
        margin-bottom: 0;
        font-size: 1.4rem;
    }
}