/* ---------------------------- HEADER SECTION ---------------------------- */

header nav{
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-bottom: 3px solid black;
}

.logo-heading{
    font-family: "Luckiest Guy";
    font-weight: 400;
    font-size: 2rem;
    color: rgb(251, 214, 50);
}

.nav-buttons-continer{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 40%;
  height: 7vh;
}

.nav-auth-btn{
  width: 15vw;
  display: flex;
  justify-content: flex-end;
}

.navButtons {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30rem;
  height: 3rem;
  cursor: pointer;
  letter-spacing: 2px;
  position:relative;
  overflow:hidden;
  margin: 0px 20px;
  color: rgb(245, 174, 41);
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
}

.navButtons:before {
  content: "";
  position: absolute;
  width: 0;
  background : rgb(245, 174, 41);
  left: 45%;
  height: 2px;
  bottom: 0;
  transition: all .3s;
  opacity: 0.7;
}

.navButtons:hover:before {
  width: 100%;
  left:0;
}

header nav .logout-button{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 45px;
  height: 45px;
  margin-right: 1rem;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: .3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-color: rgb(255, 65, 65);
}

header nav .login-button{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 45px;
  height: 45px;
  margin-right: 1rem;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: .3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-color: rgb(247, 213, 62);
}
header nav .login-button .text{
  margin-left: 3.5rem;
  color: #1e1e1e;
}
header nav .login-button .sign svg path {
  fill: #1e1e1e;
}

header nav .sign {
  width: 100%;
  transition-duration: .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
header nav .sign svg {
  width: 17px;
}
header nav .sign svg path {
  fill: white;
}
header nav .text {
  position: absolute;
  margin-left: 2rem;
  width: 0%;
  opacity: 0;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  transition-duration: .3s;
}
header nav .logout-button:hover {
  width: 125px;
  border-radius: 40px;
  transition-duration: .3s;
}
header nav .logout-button:hover .sign {
  width: 30%;
  transition-duration: .3s;
  padding-left: 20px;
}
header nav .logout-button:hover .text {
  opacity: 1;
  width: 70%;
  transition-duration: .3s;
  padding-right: 10px;
}
header nav .logout-button:active {
  transform: translate(2px ,2px);
}

header nav .sign {
  width: 100%;
  transition-duration: .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
header nav .sign svg {
  width: 17px;
}
header nav .sign svg path {
  fill: white;
}
header nav .text {
  position: absolute;
  margin-left: 2rem;
  width: 0%;
  opacity: 0;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  transition-duration: .3s;
}
header nav .login-button:hover {
  width: 125px;
  border-radius: 40px;
  transition-duration: .3s;
}
header nav .login-button:hover .sign {
  width: 30%;
  transition-duration: .3s;
  padding-left: 20px;
}
header nav .login-button:hover .text {
  opacity: 1;
  width: 70%;
  transition-duration: .3s;
  padding-right: 10px;
}
header nav .login-button:active {
  transform: translate(2px ,2px);
}

/* ---------------------------- SIGNUP PAGE ---------------------------- */

.FormContainer{
    min-height: 90vh;
    margin: 0;
    display: grid;
    place-items: center;
}

.form-container {
    padding: 2rem 4rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.314);  
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-button,
.form-button *,
.form-button :after,
.form-button :before,
.form-button:after,
.form-button:before {
  border: 0 solid;
  box-sizing: border-box;
}

.form-button {
  -webkit-tap-highlight-color: transparent;
  appearance: button;
  -webkit-appearance: button;
  background-color: #fff;
  background-image: none;
  color: #000;
  cursor: pointer;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 100%;
  line-height: 1.0;
  margin: 0;
  -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
  mask-image: radial-gradient(#000, #fff);
  padding: 0;
}

.form-button:disabled {
  cursor: default;
}

.form-button:-moz-focusring {
  outline: auto;
}

.form-button svg {
  display: block;
}

.form-button [hidden] {
  display: none;
}

.form-button {
  border: 1px solid;
  border-radius: 999px;
  box-sizing: border-box;
  display: block;
  font-weight: 900;
  overflow: hidden;
  padding: 1.2rem 3rem;
  position: relative;
  text-transform: uppercase;
}

.form-button .original {
  background: #000;
  color: #fff;
  display: grid;
  inset: 0;
  place-content: center;
  position: absolute;
  transition: transform 0.2s cubic-bezier(0.87, 0, 0.13, 1);
}

.form-button:hover .original {
  transform: translateY(100%);
}

.form-button .letters {
  display: inline-flex;
}

.form-button span {
  opacity: 0;
  transform: translateY(-15px);
  transition: transform 0.2s cubic-bezier(0.87, 0, 0.13, 1), opacity 0.2s;
}

.form-button span:nth-child(2n) {
  transform: translateY(15px);
}

.form-button:hover span {
  opacity: 1;
  transform: translateY(0);
}

.form-button:hover span:nth-child(2) {
  transition-delay: 0.1s;
}

.form-button:hover span:nth-child(3) {
  transition-delay: 0.2s;
}

.form-button:hover span:nth-child(4) {
  transition-delay: 0.3s;
}

.form-button:hover span:nth-child(5) {
  transition-delay: 0.4s;
}

.form-button:hover span:nth-child(6) {
  transition-delay: 0.5s;
}

.form-button:hover span:nth-child(7) {
  transition-delay: 0.6s;
}

.form-button:hover span:nth-child(8) {
  transition-delay: 0.7s;
}

/* ---------------------------- Home page (scrapping) ---------------------------- */

.home-container{
    display: flex;
    text-align: center;
    gap: 2rem;
    height: 100%;
    padding-top:5%;
}

@media (max-width: 430px) {
    .home-container {
        display: grid;
    }
}

.home-card {
  display: flex;
  border: 3px solid rgb(30, 29, 29);
  border-radius: 20px;
  padding: 10px;
  gap: 10px;
}

.home-card img{
  width: 8vw;
  height: 16vh;
  border-radius: 10px;
}

@media (max-width: 430px) {
  .home-card img {
    display: none;
  }
  
}

.home-card-button {
  background: rgb(251, 214, 50);
  color: black;
  font-weight: 900;
  font-family: inherit;
  padding: 0.35em;
  padding-left: 1.2em;
  font-size: 1em;
  font-weight: 900;
  border-radius: .4em;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  height: 3.3em;
  width: 11rem;
  padding-right: 3.3em;
  margin-top: 1rem;
  margin-left: 3rem;
  cursor: pointer;
  border: 2px solid rgb(30, 29, 29);
  box-shadow: 0 .5px 4px;
  text-decoration: none;
}

.home-card-button .home-card-button-icon {
  background: black;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.6em;
  width: 2.6em;
  border-radius: .2em;
  right: 0.3em;
  transition: all 0.3s;
}

.home-card-button:hover .home-card-button-icon {
  width: calc(100% - 0.6em);
}

.home-card-button .home-card-button-icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: white;
}

.home-card-button:hover .home-card-button-icon svg {
  transform: translateX(0.1em);
}

.home-card-button:active .home-card-button-icon {
  transform: scale(0.95);
}


/* ------------------ MAPS PAGE ------------------ */

.result-table{
  border: 3px solid rgba(0, 0, 0, 0.403);
  border-radius: 10px;
  width: 100%;
  height: 78vh;
}

.result-table form{
  border-bottom: 1px solid rgba(0, 0, 0, 0.403);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  gap: 15px;
}

.maps-result{
  overflow-y: scroll;
  width: 100%;
  height: 88%;
}

.maps-result-head{
  border-bottom: 1px solid rgba(0, 0, 0, 0.403);
  padding: 0.5rem;
  align-items: center;
  justify-content: center;
}

/* ------------------ LINKEDIN PAGE ------------------ */

.linkedin-scrape-container{
  justify-content:flex-start;
  border: 3px solid rgba(0, 0, 0, 0.403);
  border-radius: 10px;
  height: 78vh;
}

.linkedin_search_button{
  padding: .8em 1.2em;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  color: #000000;
  transition: all 500ms;
  font-size: 12.3px;
  position: relative;
  overflow: hidden;
  background-color: rgb(255, 238, 0);
}

.linkedin_search_button:hover {
  color: #000000;
  transform: scale(1.1);
  outline: none;
  box-shadow: 4px 5px 17px -4px #ffc800;
}

.linkedin_search_button::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #ffcc00;
  transform: skewX(45deg);
  z-index: -1;
  transition: width 700ms;
}

.linkedin_search_button:hover::before {
  width: 250%;
}

.linkedin_search_result{
  overflow-y: scroll;
  padding: 1rem;
}
