body {
    font-family: 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif, Open Sans;
    font-size: 14px;
    line-height: 1.42857;
    height: 350px;
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    overflow-x: hidden;
    overflow-y: auto;
}

.form-control {
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #999999;
    border-radius: 0;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    color: #333333;
    display: block;
    font-size: 14px;
    height: 34px;
    line-height: 1.42857;
    padding: 6px 12px;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    width: 100%;
}

.login-box, .register-box {
    width: 330px;
    height: 330px;
    background-color: #005a39;
    margin: 7% auto;
    border-radius: 50%;
    color: #666;
    padding: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.logo {
    width: 60px;
    margin-bottom: 25px;
}

.login-page, .register-page {
    background: #d2d6de;
}

.login-box-msg, .register-box-msg {
    margin: 0;
    text-align: center;
    padding: 0 20px 20px 20px;
}
.has-feedback {
    position: relative;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

.form-group input[type=text] {
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    height: 38px;
    color: #868686;
}

.form-group input[type=password] {
    border-radius: 0 0 10px 10px;
    height: 38px;
    color: #868686;
}

.login-box-bottom input[type=submit] {
    background-color: #00ac4a;
    border-color: #00ac4a;
    width: 100px !important;
    margin: 0 auto;
    color: #FFF;
    margin-top: 15px;
}

.login-box-bottom .login-box-bottom input[type=submit]:hover, input[type=submit]:active, input[type=submit]:focus {
    color: #FFF;
    background-color: #059041;
    border-color: #059041;
    outline: none;
}


.has-feedback .form-control {
    padding-right: 42.5px;
}
.login-box-body .form-control-feedback, .register-box-body .form-control-feedback {
    color: #777;
}

.form-control-feedback {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    pointer-events: none;
}

.send-arrow {
    width: 25px;
    height: 25px;
    bottom: 6px;
    right: 7px;
    position: absolute;
    border-radius: 50%;
    border: none;
    background-color: #999;
}

    .send-arrow:hover {
        background-color: #059041;
    }
    .send-arrow:active,
    .send-arrow:focus {
        outline: none;
    }

    .send-arrow i {
        color: #FFF;
        display: inline-block;
        margin-top: 2px;
    }

.login-box-bottom #rememberMe {
    display: none;
}

    .login-box-bottom #rememberMe + label {
        color: #c5d5cf;
        font-weight: normal;
        position: relative;
        padding-left: 25px;
        margin-bottom: 15px;
    }

        .login-box-bottom #rememberMe + label:before {
            content: '';
            position: absolute;
            width: 15px;
            height: 15px;
            border-radius: 5px;
            background-color: #FFF;
            top: 2px;
            left: 0;
        }

    .login-box-bottom #rememberMe:checked + label:before {
        content: '\e013';
        font-family: 'Glyphicons Halflings';
        color: #000;
        font-size: 12px;
    }

.login-box-bottom .forgot-password a {
    display: block;
    color: #00ac4a;
    padding-left: 13px;
}














