* {
  margin: 0;
  padding: 0;
}

/* 
nav {
  background-color: transparent;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 255, 0.5),
    rgba(0, 0, 255, 1)
  );
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  height: 80px;
}

nav ul {
  display: flex;
  list-style: none;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
  margin-left: 5%;
  margin-right: 5%;
}

nav ul li {
  padding: 0.5rem;
  margin: 0 1rem;
}

nav ul li:first-child {
  margin-left: 0;
}

nav ul li:last-child {
  margin-right: 0;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0.5rem;
  border-bottom: 3px solid transparent;
}

nav ul li a:hover {
  border-bottom: 3px solid #fff;
}

nav ul li:nth-child(1) {
  margin-right: auto;
}

nav ul li:nth-child(2) {
  margin-left: auto;
  margin-right: auto;
}

nav ul li:nth-child(3) {
  margin-left: auto;
}

.gradient {
  width: 100vw;
  height: 100vh;
  background: linear-gradient(334deg, #6b97f7, #7525e2, #f7137e);
  background-size: 180% 180%;
  animation: gradient-animation 6s ease infinite;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  width: 400px;
  height: 250px;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  display: none;
}

.popup-content {
  text-align: center;
}

.popup-content h2 {
  margin-bottom: 1rem;
}

.popup-content input {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.5rem;
  font-size: 1.2rem;
  border-radius: 5px;
  border: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.popup-content input[type="submit"] {
  display: block;
  width: 40%;
  margin: 0 auto;
  padding: 0.5rem;
  font-size: 1.2rem;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.popup-content input[type="submit"]:hover {
  background-color: #0069d9;
}

.show-popup {
  display: block;
}

.hide-popup {
  display: none;
} */
.gradient{
  width: 100%;
  position: absolute;
  z-index: -1;
  height: 100vh;
  background-image: url("https://thumbs.dreamstime.com/z/log-box-computer-screen-admin-52453492.jpg");
  background-repeat: no-repeat;
  background-size:cover;
}
.adminLoginPageTitle {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  padding: 15px;
  /* background-color: #74EBD5; */
  /* background-image: linear-gradient(90deg, #74EBD5 0%, #9FACE6 100%); */
  border-bottom: 2px solid black;
}
.adminLoginFormContainer{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.adminLoginFormContainer h2{
  margin-top: 20vh;
  font-size: 40px;
  z-index: 2;
  padding: 10px;
  padding-bottom: 30px;
}
.adminLoginFormContainer input{
  height: 50px;
  width: 300px;
  text-align: center;
  border: 1px solid transparent;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.adminLoginFormContainer button{
  border: 1px solid red;
}

.adminLoginFormContainer button {
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid #18181a;
  color: #18181a;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
  padding: 18px 18px 17px;
  text-decoration: none;
  cursor: pointer;
  background: #fff;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.adminLoginFormContainer button span:first-child {
  position: relative;
  transition: color 600ms cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 10;
}

.adminLoginFormContainer button span:last-child {
  color: white;
  display: block;
  position: absolute;
  bottom: 0;
  transition: all 500ms cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 100;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translateY(125%) translateX(-50%);
  height: 14px;
  line-height: 13px;
}

.adminLoginFormContainer button:after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  transform-origin: bottom center;
  transition: transform 2000ms cubic-bezier(0.48, 0, 0.12, 1);
  transform: skewY(9.3deg) scaleY(0);
  z-index: 50;
}

.adminLoginFormContainer button:hover:after {
  transform-origin: bottom center;
  transform: skewY(9.3deg) scaleY(2);
  color: white;
  content: "LOGIN";
}

.adminLoginFormContainer button:hover span:last-child {
  transform: translateX(-50%) translateY(-100%);
  opacity: 1;
  transition: all 900ms cubic-bezier(0.48, 0, 0.12, 1);
}