html {
    height: 100%;
    background: url('../img/bg_login.gif') center center / cover no-repeat;
    font-family:    Arial, Helvetica, sans-serif;
}

/* Pen Title */
.pen-title {
    padding: 30px 0;
    text-align: center;
    letter-spacing: 2px;
}
.pen-title h1 {
    margin: 0 0 20px;
    font-size: 48px;
    font-weight: 300;
}
.pen-title span {
    font-size: 12px;
}
.pen-title span .fa {
    color: #1f65a7;
}
.pen-title span a {
    color: #1f65a7;
    font-weight: 600;
    text-decoration: none;
}

/* Form Module */
.form-module {
    position: relative;
    background: #ffffff;
    max-width: 320px;
    width: 100%;
    border-top: 5px solid #1f65a7;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}
.form-module .toggle {
    cursor: pointer;
    position: absolute;
    top: -0;
    right: -0;
    background: #1f65a7;
    width: 30px;
    height: 30px;
    margin: -5px 0 0;
    color: #ffffff;
    font-size: 12px;
    line-height: 30px;
    text-align: center;
}
.form-module .toggle .tooltip {
    position: absolute;
    top: 5px;
    right: -65px;
    display: block;
    background: rgba(0, 0, 0, 0.6);
    width: auto;
    padding: 5px;
    font-size: 10px;
    line-height: 1;
    text-transform: uppercase;
}
.form-module .toggle .tooltip:before {
    content: '';
    position: absolute;
    top: 5px;
    left: -5px;
    display: block;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid rgba(0, 0, 0, 0.6);
}
.form-module .form {
    display: none;
    padding: 40px;
}
.form-module .form:nth-child(2) {
    display: block;
}
.form-module h2 {
    margin: 0 0 20px;
    color: #1f65a7;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}
.form-module input {
    outline: none;
    display: block;
    width: 100%;
    border: 1px solid #d9d9d9;
    margin: 10px 0 5px;
    padding: 10px 10px;
    box-sizing: border-box;
    font-wieght: 400;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.form-module input:focus {
    border: 1px solid #33b5e5;
    color: #333333;
}
.form-module button {
    cursor: pointer;
    background: #1f65a7;
    width: 100%;
    border: 0;
    padding: 10px 15px;
    color: #ffffff;
    border-radius: 30px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    margin:10px 0 0 0;
}
.form-module button:hover {
    /* background: #F50057; */
}
.form-module .cta {
    background: #f2f2f2;
    width: 100%;
    padding: 15px 40px;
    box-sizing: border-box;
    color: #666666;
    font-size: 12px;
    text-align: center;
}
.form-module .cta a {
    color: #333333;
    text-decoration: none;
}

.alert {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-family:    Arial, Helvetica, sans-serif;
    font-size:      12px;
}

.alert-danger {
    color: #ffffff;
    background-color: #ef6157 ;
    border-color: #ebccd1;
}

.alert-success {
    color: #ffffff;
    background-color: #1f65a7 ;
}

.fa-warning{
    color:#ffffff;
}

h5 {
    position: relative; /* Helps us control overlap */
    padding-left: 20px; /* Creates space for the Phone Icon */
}

h5:after {
    content: '\f071';
    font-family: fontAwesome;
    position: absolute;
    left: 0; /* Adjust as needed */
    top: 0px; /* Adjust as needed */
}

.error-message{
    display: none;
    font-size: 12px;
    color:#ef6157;
    font-style: italic; 
    font-weight: bold;
    margin:5px 0 0 0;
}

.notice-message{
    font-size: 12px;
    color:#A9A9A9;
    font-style: italic;
}

.forget-password{
    font-size: 14px;
    margin:10px 0 0 0;
    text-align: center;
}

a {
    color: #1f65a7;
    /*text-decoration: none;*/
}