﻿html * {
    box-sizing: border-box;
}
body {
    font-family: Helvetica, Arial, sans-serif;
    background-color: #fff;
    font-size: 14px;
    color: #404041;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}
.wrapper {
    display: flex;
    width: 100%;
    height: 100px;
    min-height: 100vh;
}
.column {
    flex-basis: 50%;
    display: flex;
    align-items: center;
}
.column--bg {
    /* Change to absolute */
    background: url('/SynTec-V2/images/SynTec-b2c-login-bg.jpg') no-repeat #00509e;
    background-position: top right;
    background-size: cover;
    color: #fff;
}
.column--content {
    justify-content: center;
}
.login-form {
    width: 100%;
    max-width: 420px;
    padding: 15px;
}
.brand-logo {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}
.brand-logo img {
    width: 100%;
    max-width: 300px;
    height: auto;
}
.intro h2 {
    font-weight: 700;
    color: #00509e;
    font-size: 24px;
    line-height: 1.2;
    margin-top: 0;
}
.error > p {
    border-radius: 3px;
    background-color: red;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    padding: 18px;
    margin: 13px 0;
    text-align: center;
}
.entry-item {
    margin-bottom: 14px;
}
.entry-item label {
    font-weight: 700;
    line-height: 1;
    letter-spacing: .56px;
    display: block;
    margin-bottom: 8px;
}
.entry-item input {
    font-size: 14px;
    border: 1px solid #aaa;
    padding: 10px;
    line-height: 1;
    display: block;
    color: #343434;
    width: 100%;
    border-radius: 3px;
}
.entry-item input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #a9a9a9;
    opacity: 1;
}
.entry-item input::-moz-placeholder { /* Firefox 19+ */
    color: #a9a9a9;
    opacity: 1;
}
.entry-item input:-moz-placeholder { /* Firefox 18- */
    color: #a9a9a9;
    opacity: 1;
}
.entry-item input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #a9a9a9;
    opacity: 1;
}
.entry-item input::-ms-input-placeholder { /* Microsoft Edge */
    color: #a9a9a9;
    opacity: 1;
}
.entry-item input::placeholder {
    color: #a9a9a9;
    opacity: 1;
}
.rememberMe input[type="checkbox"] {
    display: none;
}
.rememberMe {
    line-height: 17px;
    position: relative;
    margin-bottom: 10px;
}
.rememberMe label {
    font-size: 12px;
    text-transform: capitalize;
    letter-spacing: .48px;
    margin-left: 20px;
}
.rememberMe label:hover {
    cursor: pointer;
}
.rememberMe label:before {
    font-family: Material-Design-Iconic-Font;
    content: "\f279";
    color: #aaa;
    position: absolute;
    left: 0;
    font-size: 16px;
    font-weight: 400;
}
.rememberMe input:checked ~ label:before {
    content: "\f26a";
    color:#008ce6;
}
.buttons button {
    color: #fff;
    background-color: #008ce6;
    border: 1px solid #008ce6;
    border-radius: 4px;
    font-size: 1rem;
    line-height: 1.5;
    padding: 8px 40px 8px 40px;
    -webkit-appearance: none;
}
.buttons button:hover {
    color: #fff;
    background-color: #00458c;
    border-color: #00458c;
    cursor: pointer;
}
.signup__lower-links {
    text-align: left;
    margin: 12px 0;
}
.signup__lower-links > div {
    padding: 2px 0;
}
.signup__lower-links a:link,
.signup__lower-links a:visited {
    color: #008ce6;
    text-decoration: none;
}
.signup__lower-links a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .column {
        flex-basis: 100%;
    }
    .column--bg {
        display: none;
    }
    .column--content {
        align-items: flex-start;
        padding-top: 35px;
    }
    .login-form {
        padding: 0 20px;
    }
    .intro h2 {
        font-size: 20px;
    }
}