/* Reset default styles */
body,
h1,
h2,
h3,
p,
img,
ul,
li {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Poppins";
  src: url("./Poppins/Poppins-Light.ttf") format("woff2");
}

:root {
  --primary: rgba(0, 0, 0, 0.89);
  --secondary: white;
  --third: #68a7ad;
  --dark: #00a4b3;
}

.custom_cursor {
  width: 30px;
  height: 30px;
  border: 4px solid var(--third);
  opacity: 2;
  background-color: transparent;
  border-radius: 50%;
  position: absolute;
  pointer-events: none;
  z-index: 10;
  transition-timing-function: ease-out;
  animation: cursorAnim 0.5s infinite alternate;
  transition-duration: 200ms;
  box-shadow: rgba(255, 255, 255, 0.34) 0px 4px 12px;
}

footer {
  text-align: center;
  padding: 20px 0;
  color: var(--secondary);
}

body {
  font-family: "Poppins";
  background-color: var(--primary);
  color: var(--secondary);
  overflow-x: hidden;
}

.btn {
  background-color: var(--third);
  color: var(--secondary);
  transition: 0.5s;
}

.btn:hover {
  background-color: var(--third);
  color: var(--secondary);
  box-shadow: rgba(255, 255, 255, 0.34) 0px 4px 12px;
}

.intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.animation {
  height: 500px;
}

.big {
  font-size: 3rem;
  font-weight: 900;
  color: #00a4b3;
}

.medium {
  font-size: 1.5rem;
  font-weight: 600;
  color: #7cadb2;
}

.features {
  color: var(--primary);
}

.features .content {
  background-color: #a3d5d8;
}

.content h2 {
  font-weight: 600;
}

.feature {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
}

.feature2 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row-reverse;
}

.feature2 div {
  width: 55%;
}

.benefit {
  background-color: rgb(240, 141, 157);
  border-radius: 100%;
  display: flex;
  width: 25%;
  height: fit-content;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}

.b-txt {
  font-size: 0.8rem;
  width: 80%;
  display: none;
}

.benefit:hover {
  border-radius: 20%;
}

.benefit:hover .b-txt {
  display: block;
}

.benefits-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 700px;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 10px;
}

.modal-title {
  color: black;
}

.registerPage {
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(255, 255, 255, 0.2) 0px 18px 50px -10px;
  border-radius: 30px;
  color: var(--primary);
}

.alert {
  color: rgb(159, 2, 2);
  font-size: 0.8rem;
  background-color: rgba(255, 0, 0, 0.137);
}

.candidates {
  border-radius: 20px;
}

.candidate {
  border: 1px solid rgba(224, 223, 223, 0.205);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.profile {
  height: 100px;
  width: 100px;
  border-radius: 100%;
  object-fit: cover;
  object-position: 25% 25%;
  border: 1px solid rgba(224, 223, 223, 0.205);
  padding: 5px;
}

.ok {
  width: 80%;
}

.resume {
  font-size: 0.8rem;
}

.search {
  display: flex;
  column-gap: 20px;
}

.search select,
.eval select {
  background-color: transparent;
  border: 1px solid rgba(224, 223, 223, 0.205);
  color: white;
}

.search select:focus,
.eval select:focus {
  background-color: transparent;
  border: 1px solid rgba(224, 223, 223, 0.205);
  color: white;
}

.empty {
  font-size: 1.5rem;
  font-weight: 600;
  margin: auto;
  text-align: center;
}

.ok1 {
  width: 65%;
}

.eval label {
  font-size: 0.86rem;
}

input[type="range"] {
  width: 200px;
  height: 7px;
  background: transparent;
  border-radius: 5px;
  background-size: 70% 100%;
  background-repeat: no-repeat;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 2px 0 #555;
  transition: background 0.3s ease-in-out;
}

input[type="range"]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}
