﻿html, body, #body {
    height: 100%;
    padding: 0;
    margin: 0;
}

/*
* =============== Home Page ===============
*/
.home-wrapper {
    background: radial-gradient(#FFFFFF, #DBDBDB);
    /* IE 11 - a flex container doesn't respect the min-height property, make the flex wrapper also a flex item*/
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* https://stackoverflow.com/a/19027949/2630794 */
.home-container {
    width: 100%;
    min-height: 100vh; /* 100% of the viewport height */
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-container button.btn {
    background: #82C342;
    border-width: 0px;
    margin-bottom: 10px;
    margin-top: 10px;
    color: white;
}

.home-container button.btn:hover,
.home-container button.btn:active,
.home-container button.btn:focus,
.home-container button.btn:active:focus {
    background-color: #70d628;
    border-width: 0px;
    border-color: #82C342;
    color: white;
}

/* https://www.formget.com/form-field-elements-having-icon/ */
.home-container input,
.home-container textarea,
.home-container select {
    background-repeat: no-repeat;
    background-position: 6px;
    font-size: 14px;
    box-shadow: 0 0 10px;
    -webkit-box-shadow: 0 0 10px; /* For I.E */
    -moz-box-shadow: 0 0 10px; /* For Mozilla Web Browser*/
    border-radius: 5px;
    -webkit-border-radius: 5px;  /* For I.E */
    -moz-border-radius: 5px; /* For Mozilla Web Browser*/
}
.home-container select {
    margin: 5px 0 6px 0;
}
.home-container input[type=checkbox] {
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}
/* Removing clear and reveal password icons from IE10 */
.home-container input::-ms-clear, input::-ms-reveal {
    display: none;
}


.home-logo {
    width: 300px;
    margin: auto;
}

.login-panel .form-group {
    margin-bottom: 0px;
}

.login-panel .form-group label {
    font-weight: 700;
    color: #000000;
    font-size: 0.8em;
}

.home-content-title {
    margin: 0;
    text-align: center;
    font-size: large;
    font-weight: 700;
    color: #4D4B50;
}
.home-content-mssg-text {
    margin: 0 ;
    text-align: center ;
    font-size:medium ;
    font-weight: normal ;
    color: #4D4B50 ;
    width: 530px
}
.home-content-mssg-text span {
    color: #008080;
}

.home-content-mssg-link {
    margin: 0;
    text-align: center;
    font-size: medium;
    font-weight: normal;
    color: #008080;
    width: 530px
}

.home-content-mssg-userrequest {
    color: #e80c4d !important;
    font-weight: bold !important;
    font-family: 'Open Sans Regular', sans-serif !important;
    font-size: .85em !important;
}

.home-content-agreement-container {
    display: flex;
    justify-content: center;
}
.home-content-agreement-grid {
    display: grid;
    grid-template-columns: 50% 40%;
    grid-template-rows: 1fr;
    gap: 1em;
    width: 300px;
}
.home-content-agreement-grid a {
    width: 11em;
}

.login-panel {
    margin: auto;
    width: 300px;
}

.login-panel-body {
    background: none;
    padding: 20px;
    border-top: 0;
    color: #666;
}

.login-panel-logo {
    width: 230px;
    margin: auto;
}

.home-container .login-panel-logo img {
    height: 100%;
    width: 100%;
}

.panelRowPadding {
    padding: 0px 20px 20px 20px;
}

/*
* =============== Request Account ===============
*/

/* reCAPTCHA */
.home-request-account fieldset.white-fieldset {
    border: solid 0px #fff;
}
.home-request-account .rc-anchor-light.rc-anchor-normal {
    border: 0px solid #d3d3d3;
}