/*
    html, body
*/

html, body {
    /* display: flex; */
    height: 100%;
    width: 100%;
    /* align-items: center;
    justify-content: center; */
    overflow-y: auto;
}

/*
    SECTION
*/

.section-geral {
    position: relative;
    width: 100%;
    height: 500px;
    /* background: darkmagenta; */
    padding-left: 50px;
    padding-right: 50px;
}

@media only screen and (min-width: 1024px) {
    .section-geral {
        top: calc(50% - 250px);
    }
}

/*
    INFORMACAO
*/

.div-imagem-informacao {
    width: 100%;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background: darkorange; */
}

.div-imagem-informacao img {
    width: 450px;
    margin-top: 20px;
}

.div-texto-informacao {
    overflow: hidden;
    height: 250px;
    width: 100%;
    /* background: darkred; */
}

.titulo-informacao {
    width: 100%;
    text-align: center;
    /* background: #000; */
    color: rgb(0, 55, 156);
    font-size: 25px;
    font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
}

.hr {
    border: 0;
    height: 1px;
    margin-top: 10px;
    margin-bottom: 10px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 55, 156, 0.75), rgba(0, 0, 0, 0));
}

.hr-vr {
    width: 2px;
    border: 0;
    height: 500px;
    background-image: linear-gradient(to top, rgba(0, 55, 156, 0.1), rgba(0, 55, 156, 1), rgba(0, 55, 156, 0.1));
}

.corpo-informacao {
    width: 500px;
    margin-left: calc(50% - 250px);
}

/*
    FORM
*/

.div-imagem-form {
    width: 100%;
    height: 100px;
    /* background: #ff00eb; */
}

.div-imagem-form img {
    width: 260px;
    margin-left: calc(50% - 130px);
    margin-top: 10px;
}

@media only screen and (min-width: 1024px) {
    .div-form {
        padding: 0 75px 20px 75px;
        height: 400px;
        /* background: darkorange; */
    }
}

.div-form {
    /*padding: 40px 75px 20px 75px;*/
    /*height: 400px;*/
    /* background: darkorange; */
}

.title-escolha{
    font-size: 16px;
    font-weight: bold;
    color: #444;
}

.organizacao{
    position: relative;
    border: 1px solid #999;
    border-radius: 20px;
    margin-bottom: 5px;
    cursor: pointer;
    font-size: 13px;
    transition-duration: 0.3s;
    transition-property: transform;
}

.organizacao:hover{
    background: #efefef;
    transform: scale(1.1);
}

.img-logo-organizacao{
    width: 75px;
    height: 20px;
    position: absolute;
    left: 10px;
    /*top: 15px;*/
}

.label {
    font-weight: normal;
}

.input {
    background: #f5f5f5 !important;
}

.button-login{
    background: #00287c !important;
    border-radius: 23px;
    padding-left: 23px;
    padding-right: 23px;
    font-size: 21px;
}

.button-recuperar-senha{
    background: #00287c !important;
    border-radius: 23px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 17px;
}

.label-erro{
    font-size: 13px;
    color: red;
}

.label-link{
    font-size: 16px;
}

.link-cadastrar{
    font-size: 16px;
    margin-left: auto;
}

.modal__container{
    padding: 0px !important;    
}

.modal__content{
    margin: 5px !important;
}

.modal__header{
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0,31,232,0.2);
    -moz-box-shadow: 0px 2px 4px 0px rgba(0,31,232,0.2);
    /*box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.3);*/
    box-shadow: 0px 1px 3px 0px rgba(0,31,232,0.2);
}

.titulo-recuperacao-senha{
    width: 100%;
    text-align: center;
    color: rgb(0,55,156);
    font-size: 20px;
    font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
    margin-bottom: 10px;
}


.loader-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255,255,255,0.5);
  opacity: 0;
  z-index: -1;
  transition: opacity .3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
}
.loader-wrapper .loader {
  height: 80px;
  width: 80px;
}
.loader-wrapper.is-active {
  opacity: 1;
  z-index: 999999999;
}

.is-loading {
  position: relative;
}

.is-center-login {
    align-self: center;
}

.modal-card, .modal-content {
    margin: 0px !important;
}

.lbl-acesso {
    color: #878787;
}

.icone-acesso {
    cursor: pointer;
    display: inline-block;
    margin: 10px;
    transition-duration: 0.3s;
    transition-property: transform;
}

.icone-acesso > i {
    font-size: 50px;
}

.icone-acesso:hover {
    transform: scale(1.1);
}

.icone-acesso:hover > i,
.icone-acesso.active > i,
.organizacao:hover > i {
    color: rgb(0, 55, 156);
}

.img-logo-organizacao-tipo-acesso {
    position: absolute;
    right: 15px;
    top: 8px;
    font-size: 30px;
}

#inptPesquisarOrganizacao::-webkit-input-placeholder {
    text-align: center;
}

#inptPesquisarOrganizacao:-moz-placeholder { /* Firefox 18- */
    text-align: center;
}

#inptPesquisarOrganizacao::-moz-placeholder {  /* Firefox 19+ */
    text-align: center;
}

#inptPesquisarOrganizacao:-ms-input-placeholder {
    text-align: center;
}