body#home {
    background: transparent linear-gradient(180deg, #00488F 0%, var(--primary) 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(180deg, #00488F 0%, #006BB6 100%) 0% 0% no-repeat padding-box;
}

body#home .top-bar, body#home #footer {
    display:none;
}

#container {
    background:none;
}

#userloginform-wrapper {
    background-image:none;
    height:100vh;
    width:100%;
    display:flex;
    align-items:center;
}

#userloginform {
    background: rgba(255,255,255,0.9);
    border-radius: 0.5rem;
    box-shadow: 0px 12px 48px #00488F1F;
    position: static;
    padding: 4rem 4rem 2rem;
    font-family: 'Montserrat', sans-serif;
}

#userloginform h1, #userloginform h2, #userloginform h3, #userloginform h4, #userloginform h5 {
    font-family:'Montserrat', sans-serif;
}

#userloginform input[type='text'], #userloginform input[type='password'], #userloginform select {
    background: #FCFCFC 0% 0% no-repeat padding-box;
    border: 1px solid #abbecc;
    box-sizing: border-box;
    border-radius: 3px;
    color: #333;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    display: block;
    font-size: 16px;
    padding: 0.5rem;
    height: 48px;
    width: 100%;
    line-height: 1.3;
    margin: 0;
    box-shadow: none;
}

#userloginform select {
    padding-right:1.5rem;
}

#userloginform input:hover, #userloginform input:focus, 
#userloginform select:hover, #userloginform select:focus {
    border-color:#006bb6;
    box-shadow:none;
    outline:none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
  }

h1.header_login {
    margin:0 0 1rem;
    background-image:none;
    height:auto;
    width:auto;
}

.text-center {
    text-align:center;
}

.text-right {
    text-align:right;
}

.mt-2 {
    margin-top: 1.5rem;
}

.mb-2 {
    margin-bottom:1.5rem;
}

.mb-4 {
    margin-bottom:3rem;
}

#userloginform input::placeholder {
    color: #757575;
}

#userloginform input:focus::placeholder {
    color: transparent;
}

.login-msg {
    text-align:left;
    font-size:14px;
}

/* Customize the label (the container) */
.custom-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 27px;
}

/* Hide the browser's default checkbox */
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.custom-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border: 1px solid #abbecc;
}

/* On mouse-over, add a grey background color */
.custom-checkbox:hover input ~ .checkmark {
    border-color: #006bb6;
    background: #FCFCFC 0% 0% no-repeat padding-box;
}

/* Create the checkmark/indicator (hidden when not checked) */
.custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.custom-checkbox .checkmark:after {
    left: 8px;
    top: 3px;
    width: 7px;
    height: 14px;
    border: solid #006bb6;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#userloginform .btn {
    font-size: 14px;
    padding: 0.5rem 1rem;
    border: none;
    color: #082645;
    font-weight: bold;
    border-radius: 3px;
}

#userloginform .btn-secondary {
	background: #666666;
}

#userloginform .btn-secondary:hover, #userloginform .btn-secondary:focus {
    background: #515151;
}

#userloginform .btn-primary {
    font-size: 16px;
    background: #95C642;
    padding: 1rem 2rem;
    display: block;
    width:100%;
}

#userloginform .btn-primary:hover, #userloginform .btn-primary:focus {
    background: #a0cc56;
}

#userloginform a {
    font-weight: normal;
    color: #006BB6;
    text-decoration:underline;
}

#userloginform a:hover, #userloginform a:focus {
    text-decoration:none;
}

.row {
    display:flex;
    align-items:center;
}

.row .col {
    flex:1;
}

@media screen and (min-width: 960px) {
    #userloginform {
        width: 500px;
    }
}