@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
  font-family: montserrat;
  box-sizing: border-box;
}

body, html{
  margin: 0;
  border: 0;
  padding: 0;
}

body{
  display: flex;
  justify-content: center;
  background-color: rgba(46, 43, 43, 0.066);
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.last_contato{
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5rem;
  border: 1px solid black;
  padding: 20px;
  background-color: white;
  color: rgb(86, 86, 86);
  border-radius: 3px;
  position: relative;
}

form{
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 2rem;
  border: 1px solid black;
  padding: 20px;
  background-color: white;
  color: rgb(86, 86, 86);
  border-radius: 3px;
  position: relative;
}

nav{
  position: fixed;
  top: 0;
  width: 100vw;
  height: 56px;
  background-color: #fffefe;
  box-shadow: 16px 1px 12px 0px #00000012;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
}

.nav_item{
  width: 33%;
  justify-content: center;
  display: flex;
}

.nav_item > a > img{
  width: 90px;
  margin-left: 10px;
}

.logo{
  display: flex;
  justify-content: start;
}



label{
  display: inline-block;
  width: 100%;
  font-weight: bold;
}

input, select{
  width: 100%;
  padding: 5px;
}

textarea{
  width: 100%;
  padding: 5px;
  resize: none;
  height: 80px;
}

.campo{
  width: 100%;
  margin-top: 10px;
  box-sizing: border-box;
}

.send{
  margin-top: 10px;
  display: flex;
  justify-content: end;
  width: 100%;
}

.send button{
  cursor: pointer;
  padding: 2px;
  font-weight: bold;
  
}

.photo_perfil{
  width: 50px;
  border-radius: 50%;
}

.perfil{
  justify-content: end;
  margin-right: 10px;
}

.user_perfil{
  justify-content: end;
  align-items: center;
  display: flex;
  border: 1px solid rgba(224, 0, 0, 0);
  cursor: pointer;
  text-align: right;
  position: relative;
}

.sair{
  display: none;
  position: absolute;
  transform: translateX(-50%);
  width: 10rem;
  padding: 1rem;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  top: 50px;
}

.user_perfil:hover{
  border: 1px solid rgba(162, 215, 255, 0.119);
  border-radius: 30px;
  width: auto;
  padding-left: 20px;
  background-color: rgba(162, 215, 255, 0.119);
}

.user_perfil > span{
  display: inline-block;
  margin-right: 5px;
}

.nav_item > span{
  display: inline-block;
  text-align: right;
  font-weight: bold;
  justify-content: center;
  margin-right: 3px;
  align-items: center;
}

.mail{
  font-size: 10px;
}

.search{
  width: 20rem;
  border: none;
  border-radius: 20px;
  padding: 2px;
}

.search:focus .container_search{
  border: 5px solid red;
}

#person{
  width: 30px;
}

.container_search{
  display: flex;
  justify-content: center;
  border: 1px solid gray;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 2px;
}

.container_search > input{
  -moz-appearance: textfield; 
  appearance: textfield;
  /* width: 20px; */
  border-radius: 10px;
}

.container_search > input:focus-visible{
  border: none;
  outline: none;
}

.container_search > input:hover{
  -moz-appearance: textfield; 
  appearance: textfield;
  outline: none;
}


.container_search > input::-webkit-inner-spin-button{
  -webkit-appearance: none;
  margin: 0;
}

.container_search:hover{
  border: 2px solid gray;
}

.container_search:focus{
  border: 2px solid gray;
}

.submit_id{
  width: 36px;
  font-size: 16px;
  border-radius: 50%;
  padding-bottom: 7px;
  color: gray;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  vertical-align: middle; 
  border: 1px solid gray;
}
.submit_id:hover{
  filter: brightness(90%);
}

#sair_button{
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  width: 100%;
  cursor: pointer;
}

#sair_button:hover{
  filter: brightness(90%);
}

.icon_sair{
  width: 15px;
  margin-right: 3px;
}

.title_last_contato{
  display: inline-block;
  position: absolute;
  top: -32px;
  left: 2px;
  font-weight: bold;
  font-size: 20px;
  background: linear-gradient(to top, white, rgb(241,240,240));
}


.loadR{
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

.loadR > img {
  width: 30%;
}