/* Style for the login pages*/


/* Style for the login button */
.login-button {
    background-color: #54afea;
    color: white;
    padding: 8px;
    cursor: pointer;
    font-size: 13px;
    border: none;
    border-radius: 25px;
    min-width: 218px;
    margin-top: 15px;
    font-weight: bold;
}
.login-button:hover {
    background-color: #51a9e1;
}
.forgot-password-button{
    background-color: #ffffff;
    color: black;
    padding: 8px;
    cursor: pointer;
    font-size: 13px;
    border: 1px solid gray;
    border-radius: 25px;
    min-width: 218px;
    margin-top: 15px;
    font-weight: bold;
    border: 1px solid rgba(195, 195, 195, 1);
}
.forgot-password-button:hover{
    border: 1px solid rgba(195, 195, 195, .5);
    -webkit-background-clip: padding-box; /* for Safari */
    background-clip: padding-box; /* for IE9+, Firefox 4+, Opera, Chrome */
}
/* Style for the input box */
.login-input {
    padding: 9px;
    font-size: 13px;
    border-radius: 4px;
    min-width: 200px;
    outline: none;
    background-color: #f7f7f7;
    margin-top: 5px;
    border: 1px solid rgba(195, 195, 195, 1);
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #f7f7f7 inset;
}
.reset-password-input {
    padding: 9px;
    font-size: 13px;
    border-radius: 4px;
    min-width: 220px;
    outline: none;
    background-color: #f7f7f7;
    margin-top: 5px;
    border: 1px solid rgba(195, 195, 195, 1);
}
.login-input:focus {
    border: 1px solid rgba(195, 195, 195, .5);
    -webkit-background-clip: padding-box; /* for Safari */
    background-clip: padding-box; /* for IE9+, Firefox 4+, Opera, Chrome */
}
.signup-text {
  color: #3ca5e9;
}
div#loginMessage {
    font-family: sans-serif;
    font-size: 13px;
    margin-top: 7px;
    max-width: 220px;
    text-align: center;
}
a.createaccounttext {
    margin-top: 25px;
    position: absolute;
    color: #797979;
}
a:-webkit-any-link {
    text-decoration: none;
    font-family: sans-serif;
    font-size: 12px;
    font-weight: bold;
}
a.createaccounttext{
    margin-top: 40px;
    color: #8b8b8b !important;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    display: block;
    text-align: center;
}
/* login wrapper and box */
.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -35%);
    top: 35%;
}
.login-box{
    box-shadow: 1px 3px 9px -3px rgba(0, 0, 0, 0.07);
    -webkit-box-shadow: 1px 3px 9px -3px rgba(0, 0, 0, 0.07);
    -moz-box-shadow: 1px 3px 9px -3px rgba(0, 0, 0, 0.07);
    padding: 50px;
    padding-top: 100px;
    padding-bottom: 20px;
    border-radius: 6px;
    zoom: 1.2;
    border: 1px solid #f3f3f3;
}
/* images */
.powerflow-logo{
    width: 257px;
    margin-top: -56px;
    margin-left: -15px;
    position: absolute;
}
.login-box-short {
    box-shadow: 1px 3px 9px -3px rgba(0,0,0,0.49);
    -webkit-box-shadow: 1px 3px 9px -3px rgba(0,0,0,0.49);
    -moz-box-shadow: 1px 3px 9px -3px rgba(0,0,0,0.49);
    padding: 50px;
    padding-top: 89px;
    padding-bottom: 30px;
    border-radius: 6px;
}