@import url(https://fonts.googleapis.com/css?family=Roboto:300);

body {
    background: #76b852;
    background: linear-gradient(to left, #76b852, #3ab7d4);
    font-family: 'Roboto', sans-serif;
}
.login_sec {
    width: 360px;
    padding: 8% 0 0;
    margin: auto;
}

.loginForm {
    position: relative;
    z-index: 1;
    background: #ffffff;
    max-width: 360px;
    padding: 45px;
    text-align: center;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
    overflow: hidden;
}

.formTitle {
    margin: 15px 0 0;
    font-size: 20px;
    color: #4caf50;
}

.loginForm input {
    font-family: 'Roboto', sans-serif;
    outline: 0;
    background: #f2f2f2;
    width: 100%;
    border: 0;
    margin: 0 0 15px;
    padding: 15px;
    box-sizing: border-box;
    font-size: 14px;
}

.loginForm .formBtn {
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    outline: 0;
    background: #4caf50;
    width: 100%;
    border: 0;
    padding: 15px;
    color: #ffffff;
    font-size: 14px;
    -webkit-transition: all 0.3 ease;
    transition: all 0.3 ease;
    cursor: pointer;
}

.login_sec .formBtn:hover,
.login_sec .formBtn:active,
.login_sec .formBtn:focus {
    background: #43a047;
}

.error {
    color: #ff0000c4;
    font-size: 13px;
    font-weight: bold;
    margin: -6px 0 10px;
    text-align: left;
    display: block;
}

.reCaptchaMsg {
    font-size: 11px;
    color: #008eff;
}

.grecaptcha-badge {
    display: none !important;
}
.login_sec .formMsg {
    margin: 15px 0 0;
    color: #ff0000c4;
    font-size: 12px;
}
.ajaxLoader {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #ffffffba;
    display: none;
}
.ajaxLoader img {
    width: 40px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
