/*========================================
  Complemento Bootstrap 5
==========================================*/
.w-300 {
  max-width: 300px;
  margin: 0 auto;
}
.fw-500 {
  font-weight: 500 !important;
}

/*========================================
  Botão rede social
==========================================*/
.btn-login {
  min-width: 100px;
  padding: 12px 0;
  font-size: 20px;
  font-weight: 500;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px !important;  
  color: white;
}

.btn-login:hover {
  color: white;
}

#loginGoogle {
  background-color: #D54C3F;
  transition: .5s ease-in-out;
}

#loginGoogle:hover {
  background-color: #B03A2B;
}

#loginFacebook {
  background-color: #3C5B9B;
  transition: .5s ease-in-out;
}

#loginFacebook:hover {
  background-color: #2A4470;
}

#loginLinkedin {
  background-color: #0173B2;
  transition: .5s ease-in-out;
}

#loginLinkedin:hover {
  background-color: #015278;
}

/*========================================
  Container login
==========================================*/
.cont-login {
  max-width: 500px;
  margin: 0 auto;
}

.item-login {
  position: relative;
}
.text-login {
  width: 320px;
  margin: 0 auto;
}
.text-login span {
  text-align: end;
  display: flex;
  margin-top: 20px;
  font-weight: 400;
}

.img-logo {
  width: 300px;
  height: 80px;
}
.user-img {
  position: absolute;
  left: -25px;
  top: 3px;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  margin-right: 8px;
}
.logout-user {
  display: none;
  position: absolute;
  width: 100px;
  height: 40px;
  top: 40px;
  left: 0px;
  background-color: #F7F7F7;
  padding: 10px;
  border-radius: 0px 0px 8px 8px;
  transition: .5s ease-in-out;
  z-index: 2;
}
.logout-user i {
  margin-left: 5px;
}
.item-login:hover .logout-user {
  display: block;
  transition: .5s ease-in-out;
}

.cont-talent { 
  z-index: 1; 
}

@media (max-width: 991px) {
  .user-img {
    display: none;
  }
}

/*========================================
  Container Vagas
==========================================*/
.section-vaga {
  width:100%;
  height: 500px;
  background-position: center 35%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.cont-vagas {
  position: relative !important;
  top: 0px !important;
  left: 0px !important;
  z-index: 10 !important;
  padding-bottom: 50px !important;
  margin: -200px 0px !important;
}
.listVagas .vaga {
  border-bottom: 1px solid #ccc;
  padding: 1.2rem;
  margin-bottom: 1rem;
  align-items: center;
}

.listVagas .btnCandidatar {
  text-align: left;
  display: inline-block;
  background-color: #efefef;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 5px;
  transition: .5s ease-in-out;
}

.listVagas .btnCandidatar:hover {
  background-color: #f7f7f7;
}

.listVagas .empty-vaga {
  text-align: center;
  margin-top: 1.5rem;
  font-weight: 500;
  font-size: 22px;
}

.btnCadBanco {
  background-color: #efefef;
  padding: 10px;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  margin-top: 1.5rem;
  border-radius: 8px;
}

@media (max-width: 768px) {
  
  .vaga a {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .cont-btn {
    justify-content: center !important;
  }
}


/*-----------------------------------
  Logo Da Empresa - Geral
------------------------------------*/
.logo_empresa {
  width: 80px;
  border-radius: 6px;
}

/*-----------------------------------
  Botão carregando - Geral
------------------------------------*/
.btn {
  position: relative;
}
.btn .btn-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  animation: spin 0.6s linear infinite;
  display: none;
}
.btn.load,
.btn:focus.load,
.btn:hover.load,
.btn:active.load {
 pointer-events: none;
}
.btn.load .btn-loader {
  display: block;
}
.btn.load .btn-text {
  visibility: hidden;
}

@keyframes spin {
  to {transform: rotate(360deg);}
} 