.input-field {
  display: flex;
  align-items: flex-start;
  background-color: var(--bgClr);
  border-radius: 10px;
  border: 2px solid var(--mainClr);
  overflow: hidden;
}

.input-field input {
  background-color: transparent;
  height: 100%;
  width: 100%;
  font-size: 18px;
  border: none;
  outline: none;
  color: var(--text);
  padding: 0 15px !important;
  font-weight: bold;
}

.input-field textarea {
  background-color: transparent;
  height: 98%;
  width: 100%;
  font-size: 18px;
  border: none;
  outline: none;
  color: var(--text);
  padding: 15px !important;
  font-weight: bold;
  resize: none;
  overflow-y: auto;
}

.input-field .copy-button {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.button:hover {
  transform: scale(1.02);
}

.button:active {
  transform: scale(0.98);
}

.algorithm-box:hover,
.member:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

.algorithm-box img,
.member img {
  object-fit: contain;
}
.member {
  cursor: context-menu;
}

/* !Navbar */

nav {
  margin: 0 !important;
  padding: 0 !important;
}

.navbar {
  background-color: #f0ece4;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.lock {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  width: 100%;
}

.lock img {
  width: 70px;
  height: 70px;
}

.text-icone {
  font-size: 26px;
  font-weight: bold;
  color: #333;
}

.text-icone samp {
  color: #9b745b;
}

.navbar-nav {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.nav-item .nav-link {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  transition: color 0.3s;
  position: relative;
  width: fit-content;
  padding: 0 !important;
}

.nav-item .nav-link:hover {
  color: #9b745b;
}

.nav-item .nav-link:hover,
.nav-item .nav-link.active {
  color: var(--mainClr) !important;
}

.nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  transition: all 0.3s ease-in-out;
  width: 0%;
  height: 2px;
  background-color: var(--mainClr);
}

.nav-item .nav-link:hover::after,
.nav-item .nav-link.active::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--mainClr);
}

@media screen and (max-width: 768px) {
  .lock {
    padding: 0 0px !important;
    width: unset !important;
  }
  .lock img {
    width: 60px;
    height: 60px;
  }
  .text-icone {
    font-size: 22px;
  }

  .navbar-nav {
    align-items: start;
    gap: 20px;
    padding: 15px;
  }

  .algorithm-box,
  .member {
    min-height: unset !important;
  }
}
