.container {
    padding-left: 0px;
    margin-left: 0px;
}

.row {
    height: 100vh;
}

.title-container {
    top: 50px;
    left: 80px;
    position: absolute;
}

.title {
    color: white;
    font-weight: 600;
    font-size: 30px;
}

.title-image {
    width: 752px;
    height: 423px;
    padding-top: 30px;
    margin-left: -30px;
}

.title-logo {
    height: 100px;
    width: 100px;
}

.loginBox {
    background: #fff;
    margin-top: 20px;
    padding: 20px 15px;
    border: #eee 1px solid;
    border-radius: 25px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14);
}

.loginBox h3 {
    margin-bottom: 25px;
}

.error {
    color: #a94442;
}

.primary-constrast-color {
    color: #ffffff;
}

.primary-constrast-color:hover {
    color: #649735;
    text-decoration: none;
}

.secondary-color {
    color: #649735;
}

.submit-button {
    color: #000;
    background-color: #649735;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    outline: 0;
    border: none;
    -webkit-tap-highlight-color: transparent;
    display: inline-block;
    white-space: nowrap;
    text-decoration: none;
    vertical-align: baseline;
    text-align: center;
    margin: 0;
    min-width: 64px;
    line-height: 36px;
    padding: 0 16px;
    border-radius: 4px;
    overflow: visible;
    transform: translate3d(0, 0, 0);
}

.btn:active,
.btn.active,
.btn-primary:active,
.btn-primary.active,
.submit-button:active,
.submit-button:focus,
.submit-button:hover {
    color: #000;
    background-color: #649735;
}

button:focus,
button:active:focus,
button.active:focus,
input:focus,
textarea:focus,
select:focus,
.btn:focus,
.btn.focus,
.btn-primary:focus,
.btn-primary.focus,
.btn-secondary:focus,
.btn-secondary.focus {
    outline: none !important;
    outline-style: none !important;
    box-shadow: none !important;
}

.loader {
    position: fixed;
    z-index: 99999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.loader:before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(20, 20, 20, 0.8), rgba(0, 0, 0, 0.8));
    background: -webkit-radial-gradient( rgba(20, 20, 20, 0.8), rgba(0, 0, 0, 0.8));
}

.loader:not(:required) {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.loader:not(:required):after {
    content: "";
    display: block;
    position: fixed;
    top: 40%;
    left: 45%;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #649735;
    width: 120px;
    height: 120px;
    margin-top: -0.5em;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}