@import url(https://fonts.googleapis.com/css?family=Lato);

body {
    background: #dfdfdf;
    position: relative;
    display: block;
    font-family: 'lato';
}

#container_demo {
    text-align: left;
    margin: 0;
    padding: 0;
    margin: 0 auto;
}

a.hiddenanchor {
    display: none;
}

/** The wrapper that will contain our two forms **/
#wrapper {
    width: 100%;
    right: 0px;
    min-height: 560px;
    margin: 0px auto;
}

/**** Styling the form elements **/

/**** general text styling ****/
.social_login a {
    text-decoration: none;
    color: #fff;
}
#wrapper h3 {
    font-size: 30px;
    padding: 0px 0 10px 0;
    text-align: center;
    /** For the moment only webkit supports the background-clip:text; */
    -webkit-background-clip: text;
}

#wrapper h3:after {
    content: ' ';
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 0px;
}

#wrapper p {
    margin-bottom: 15px;
}

#wrapper p:first-child {
    margin: 0px;
}



/**** advanced input styling ****/
/* placeholder */
::-webkit-input-placeholder {
    color: rgb(190, 188, 188);
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: rgb(190, 188, 188);
}

input {
    outline: none;
}

/* all the input except submit and checkbox */


/** the magic icon trick ! **/
[data-icon]:after {
    content: attr(data-icon);
    font-family: 'FontomasCustomRegular';
    color: #3c8dbc;
    position: absolute;
    left: 10px;
    top: 35px;
    width: 30px;
}

/*styling both submit buttons */

p.login.button,
p.signin.button {
    text-align: center;
    margin: 5px 0;
}

/* styling the checkbox "keep me logged in"*/
.keeplogin {
    margin-top: -5px;
}

.keeplogin input,
.keeplogin label {
    display: inline-block;
    font-size: 12px;
}

.keeplogin label {
    width: 80%;
}

/*styling the links to change from one form to another */
/** Styling both forms **/
#register, #login, #forgot {
    width: 100%;
    border-radius: 5px !important;
    position: absolute;
    top: 0px;
}


#forgot {
    z-index: 20;
    opacity: 0;
}

#register {
    z-index: 21;
    opacity: 0;
}

#login {
    z-index: 22;
    padding: 40px;
}

.btn-login {
    font-weight: bold !IMPORTANT;
	font-size: 19px !IMPORTANT;
    padding: 14px !IMPORTANT;
    padding: 16px !IMPORTANT;margin-bottom: 30px !IMPORTANT;
}
#toregister:target ~ #wrapper #register,
#tologin:target ~ #wrapper #login,
#toforgot:target ~ #wrapper #forgot {
    z-index: 22;
    -webkit-animation-delay: 0.6s;
    -webkit-animation-timing-function: ease-in;
    -moz-animation-delay: 0.6s;
    -moz-animation-timing-function: ease-in;
    -o-animation-delay: 0.6s;
    -o-animation-timing-function: ease-in;
    -ms-animation-delay: 0.6s;
    -ms-animation-timing-function: ease-in;
    animation-delay: 0.6s;
    animation-timing-function: ease-in;
    -webkit-animation-name: scaleIn;
    -moz-animation-name: scaleIn;
    -ms-animation-name: scaleIn;
    -o-animation-name: scaleIn;
    animation-name: scaleIn;
}

#toregister:target ~ #wrapper #login,
#tologin:target ~ #wrapper #register,
#toforgot:target ~ #wrapper #login {
    -webkit-animation-timing-function: ease-out;
    -moz-animation-timing-function: ease-out;
    -o-animation-timing-function: ease-out;
    -ms-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-animation-name: scaleOut;
    -moz-animation-name: scaleOut;
    -ms-animation-name: scaleOut;
    -o-animation-name: scaleOut;
    animation-name: scaleOut;
}

/** the actual animation, credit where due : http://daneden.me/animate/ ***/
.animate {
    -webkit-animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    -moz-animation-duration: 0.5s;
    -moz-animation-fill-mode: both;
    -o-animation-duration: 0.5s;
    -o-animation-fill-mode: both;
    -ms-animation-duration: 0.5s;
    -ms-animation-fill-mode: both;
    animation-duration: 0.5s;
    animation-fill-mode: both;
}

@-webkit-keyframes scaleOut {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0.5);
    }
}

@-moz-keyframes scaleOut {
    0% {
        opacity: 1;
        -moz-transform: scale(1);
    }
    100% {
        opacity: 0;
        -moz-transform: scale(0.5);
    }
}

@-ms-keyframes scaleOut {
    0% {
        opacity: 1;
        -ms-transform: scale(1);
    }
    100% {
        opacity: 0;
        -ms-transform: scale(0.5);
    }
}

@-o-keyframes scaleOut {
    0% {
        opacity: 1;
        -o-transform: scale(1);
    }
    100% {
        opacity: 0;
        -o-transform: scale(0.5);
    }
}

@keyframes scaleOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.5);
    }
}

.scaleOut {
    -webkit-animation-name: scaleOut;
    -moz-animation-name: scaleOut;
    -ms-animation-name: scaleOut;
    -o-animation-name: scaleOut;
    animation-name: scaleOut;
}

@-webkit-keyframes scaleIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
    }
}

@-moz-keyframes scaleIn {
    0% {
        opacity: 0;
        -moz-transform: scale(0.5);
    }
    100% {
        opacity: 1;
        -moz-transform: scale(1);
    }
}

@-ms-keyframes scaleIn {
    0% {
        opacity: 0;
        -ms-transform: scale(0.5);
    }
    100% {
        opacity: 1;
        -ms-transform: scale(1);
    }
}

@-o-keyframes scaleIn {
    0% {
        opacity: 0;
        -o-transform: scale(0.5);
    }
    100% {
        opacity: 1;
        -o-transform: scale(1);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.scaleIn {
    -webkit-animation-name: scaleIn;
    -moz-animation-name: scaleIn;
    -ms-animation-name: scaleIn;
    -o-animation-name: scaleIn;
    animation-name: scaleIn;
}

/** yerk some ugly IE fixes 'cause I know someone will ask "why does it look ugly in IE?", no matter how many warnings I will put in the article */

.lt8 #wrapper input {
    padding: 10px 5px 10px 32px;
    width: 92%;
}

.lt8 #wrapper input[type='checkbox'] {
    width: 10px;
    padding: 0;
}

.lt8 #wrapper h1 {
    color: #066a75;
}

.lt8 #register {
    display: none;
}

.lt8 p.change_link,
.ie9 p.change_link {
    position: absolute;
    height: 90px;
    background: transparent;
}

.livicon {
    content: attr(data-icon);
    font-family: 'FontomasCustomRegular';
    color: #3c8dbc;
    position: absolute;
    left: 8px;
    top: 41px;
    width: 30px;
}

.vertical-offset-100 {
    padding-top: 80px;
}

.black_bg {
    background: #515763 !important;
    color: #dfdfdf;
    padding-top: 10px !important;
}

.button input {
    font-size: 18px;
    padding-left: 0px;
}



.btn-success {
    background: #01bc8c;
}
.btn-warning:hover {
    color: #fff;
    background-color: #ec971f !important;
    border-color: #d58512;
}
.btn-warning {
    background: #f89a14;
}
.btn-warning:not(:disabled):not(.disabled).active,
.btn-warning:not(:disabled):not(.disabled):active,
.show > .btn-warning.dropdown-toggle {
    color: #fff !important;
}
.alert-success {
    color: #fff;
    background-color: #22ddad !important;
    border-color: #acf6ac !important;
}
.alert-danger {
    color: #fff;
    background-color: #ff908d !important;
    border-color: #ef6f6c !important;
}
.alert-info {
    color: #fff;
    background-color: #67c5df !important;
    border-color: #67c5df !important;
}
.alert-warning {
    color: #fff;
    background-color: #f89a14 !important;
    border-color: #f89a14 !important;
}
span.help-block {
    color: #a94442 !important;
}
label {
    font-size: 14px;
}
input::-webkit-input-placeholder {
    font-size: 14px !important;
}
@media (min-width: 320px) and (max-width: 374px) {
    .g-recaptcha {
        transform: scale(0.83);
        -webkit-transform: scale(0.83);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
}
@media (min-width: 374px) and (max-width: 425px) {
    .g-recaptcha {
        transform: scale(1.08);
        -webkit-transform: scale(1.08);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
}
@media (min-width: 426px) and (max-width: 768px) {
    .g-recaptcha {
        transform: scale(0.8);
        -webkit-transform: scale(0.8);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .g-recaptcha {
        transform: scale(0.84);
        -webkit-transform: scale(0.84);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
}

.btn-facebook:active,
.btn-facebook.active,
.open .dropdown-toggle.btn-facebook {
    background-image: none;
}

.btn-facebook:hover,
.btn-facebook:focus,
.btn-facebook:active,
.btn-facebook.active,
.open .dropdown-toggle.btn-facebook {
    color: #fff;
    background-color: #30487b;
    border-color: rgba(0, 0, 0, 0.2);
}
.btn-social :first-child {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 32px;
    line-height: 34px;
    font-size: 1.6em;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.btn {
    margin-bottom: 10px;
}
.btn-google-plus {
    color: #fff;
    background-color: #ef6f6c;
    border-color: rgba(0, 0, 0, 0.2);
}
.btn-google-plus:hover {
    color: #fff;
}
.btn-social {
    position: relative;
    padding-left: 44px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.btn-linkedin {
    color: #fff;
    background-color: #007bb6;
    border-color: rgba(0, 0, 0, 0.2);
}
.btn-linkedin:hover {
    color: #fff;
}
.btn-facebook {
    color: #fff;
    background-color: #418bca;
    border-color: rgba(0, 0, 0, 0.2);
}
.btn-google-plus {
    color: #fff;
    background-color: #ef6f6c;
    border-color: rgba(0, 0, 0, 0.2);
}
.btn-linkedin {
    color: #fff;
    background-color: #007bb6;
    border-color: rgba(0, 0, 0, 0.2);
}

.form-label-group {
    margin-bottom: 1.5rem;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 1.75rem + 2px);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

#wrapper label {
    color: #525252 !important;
    font-family: Montserrat;
    font-weight: 500 !important;
    padding-left: 11px !important;
    padding-right: 11px !important;
    background-color: #fff !important;
    margin-left: 30px;
}


.title {
    text-align: center;
    margin: 0 !important;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
}

input {
    border: 1px solid !IMPORTANT;
    padding: 15px !important;
}

input:not([type='submit']) {
    border-color: #ccc !important;
}

div.title {
    font-weight: bold;
    font-size: 16px;
}

#login, #forgot {
    background: white;
}
.form-label-group>input:not(:placeholder-shown)~label {
    top: -10%;
}

#btn_entrar {
    border: 1px solid;
    width: 100%;
}

body, h1, h2, h3, h4, h5, h6, span, label, p, i, li, svg, a {
    font-family: Montserrat;
}

#login_form .title span, #reset_pw .title span  {
    font-size: 18px;   margin-bottom: 30px !important;
}

p.title {
    font-size: 14px;
    line-height: 30px;
}

.label-float{
position: relative;
}

.label-float  input{
border: 0;
border-bottom: 2px solid lightgrey;
outline: none;
min-width: 180px;
font-size: 16px;
transition: all .3s ease-out;
-webkit-transition: all .3s ease-out;
-moz-transition: all .3s ease-out;
-webkit-appearance:none;
margin-top: 1.5em;
}

.label-float  input:focus{
border-bottom: 2px solid #3951b2;
}

.label-float  input::placeholder{
color:transparent;
}

.label-float  label{
pointer-events: none;
position: absolute;
top: 0;
left: 0;
margin-top: 20px;
margin-left: 20px;
transition: all .3s ease-out;
-webkit-transition: all .3s ease-out;
-moz-transition: all .3s ease-out;
}

.label-float  input:required:invalid + label{
color: red;
}
.label-float  input:focus:required:invalid{
border-bottom: 2px solid red;
}

.label-float  input:focus + label,
.label-float  input:not(:placeholder-shown) + label{
font-size: 13px;
margin-top: -10px;
color: #3951b2;
}

.logo {
    max-width: 200px;
    padding: 15px;
}
.help-block {
    color: #a94442;
}

.change_link .btn-warning {
    color: #fff;
}

#wrapper label {
    color: #bbbbbb !important;
    font-weight: 700;
    font-size: 8px;
}


