h2 {
    font-size: 16px;
    color:#005ca9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

p {
    margin: 1rem;
}

.form-page {
    background-image: url("../img/login-bg.png");
    background-position: left top;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    text-align: center;
}

.logo {
    width: 25%;
}

.form-group button {
    width: 75%;
}

#form-errors {
    display: block;
    color: red;
}

.form-control-error {
    border-color: red;
}

.register-box {
    width:70%;
    background-color: white;
    margin:0 auto;
    margin-top: 50px;
    padding-top: 40px;
    padding-bottom: 40px;
    border-radius:3px;
}

.register-input {
    text-align: left;
    width:85%;
    margin: auto;
}
.register-input .form-control {
    width: 49%;
    background-color: #edeeee;
    margin-bottom: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
    color:black;
}

.register-break {
    margin-bottom: 1em;
}

.login-box {
    width:50%;
    background-color: white;
    margin:0 auto;
    margin-top: 50px;
    padding-top: 40px;
    padding-bottom: 40px;
    border-radius:3px;
}
.login-box p {
    width:50%;
    margin:0 auto;
    color:#475259;
    font-size: 15px;
    font-weight: 400;
    line-height:20px;
    margin-bottom: 35px;
}

.login-input {
    width:75%;
    margin:0 auto;
}
.login-input .form-control {
  background-color: #edeeee;
  margin-bottom: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
  color:black;
}

.remember-me {
    width: 75%;
    margin: 0 auto;
    margin-bottom: 55px;
}
.remember-me .labelcontainer {
    display: block;
    position: relative;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding-left: 0px;
    color:#475259;
}
.remember-me .labelcontainer input {
    /* Hide the browser's default checkbox */
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.remember-me .checkmark {
    /* Create a custom checkbox */
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #475259;
    background-clip: padding-box;
    border: 1px solid transparent;
    border-radius: 50%;
}
.remember-me .labelcontainer input:checked ~ .checkmark {
    /* When the checkbox is checked, add a blue background */
    background-color: #475259;
    background-clip: padding-box;
    border: 1px solid transparent;
}
.remember-me .checkmark:after {
    /* Create the checkmark/indicator (hidden when not checked) */
    content: "";
    position: absolute;
    display: none;
}
.remember-me .labelcontainer input:checked ~ .checkmark:after {
    /* Show the checkmark when checked */
    display: block;
}
.remember-me .labelcontainer .checkmark:after {
    /* Style the checkmark/indicator */
    top: 4px;
    left: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
}

.forgot-pass {
    font-size:14px;
    position: relative;
    top:5px;
    color: #8c9397;
}

.signup-box {
    width:50%;
    background-color: #039be5;
    margin:0 auto;
    margin-top: 50px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-radius:3px;
}
.signupbox .btn-white {
    padding-left: 62px;
    padding-right: 62px;
    margin-top: 12px;
}
.signup-box h2 {
    color: #fff;
}

/* Mobile Screen */
@media (max-width: 768px) {
    .form-page {
        padding-top:50px;
        background-image: url(../img/loginmobile-bg.png);
        padding-bottom:60px;
    }

    .register-box{
        width:100%;
    }

    .login-box {
        width:100%;
        padding-bottom:0px;
    }
    .login-box p {
        width:100%;
    }

    .remember-me {
        width: 75%;
        margin: 0 auto;
        margin-bottom: 25px;
        text-align: left;
    }
    .remember-me .labelcontainer {
        padding-left:25px;
    }

    .signupbox{
        width:100%;
        margin-top:30px;
    }
}

@media (max-width: 991px){
    .register-input .form-control {
        width: 100%;
    }
}
