.nav-active {
  color: black;
  background-color: var(--yellow2);
}



.nav-active::before {
  /* z-index: -1; */
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background-color: var(--blue);
}

/* General container */
.hidden {
  opacity: 0;
  scale: 0;
}

.close-popup {
  position: absolute;
  right: 10px;
  top: 10px;
}

.container {
  transition: all 0.4s ease;
  z-index: 999;
  width: 50%;
  position: fixed;
  top: 5%;
  left: 50%;
  transform: translate(-50%);
  margin: 50px auto;
  padding: 25px;
  background: #ffffff6b;
  backdrop-filter: blur(60px);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  font-family: 'poppins';
}

/* Labels */
form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: black;
}

/* Input fields & Select */
form input,
form select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-size: 15px;
  margin-bottom: 15px;
}

/* On focus */
form input:focus,
form select:focus {
  border-color: #007bff;
  box-shadow: 0px 0px 6px rgba(0, 123, 255, 0.4);
}

/* Help text */
.form-text {
  font-size: 13px;
  color: #666;
  margin-top: -10px;
  margin-bottom: 15px;
}



/* Button hover */


.button-86 {
  all: unset;
  width: 80%;
  height: 30px;
  font-size: 16px;
  background: transparent;
  border: none;
  position: relative;
  color: black;
  cursor: pointer;
  z-index: 1;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.4);
}

.d-grid {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
}

.button-86::after,
.button-86::before {

  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -99999;
  transition: all .4s;
}

.button-86::before {
  transform: translate(0%, 0%);
  width: 100%;
  height: 100%;
  background: var(--yellow2);
  border-radius: 10px;
}

.button-86::after {
  transform: translate(10px, 10px);
  width: 35px;
  height: 35px;
  background: rgba(46, 224, 102, 0.463);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 50px;
}

.button-86:hover::before {
  transform: translate(5%, 20%);
  width: 110%;
  height: 110%;
}

.button-86:hover::after {
  border-radius: 10px;
  transform: translate(0, 0);
  width: 100%;
  height: 100%;
}

.button-86:active::after {
  transition: 0s;
  transform: translate(0, 5%);
}

.register-wrapper .row2 button {
  height: 60%;
}