body {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* margin-top: 60px; */
  font-family: "Ubuntu", sans-serif;
  background-image: url("/Assests/bgimage.jpg");
  background-size: cover;
}

/* Loader CSS */

.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 1);
  z-index: 9999;
}

.loader {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
  border: 4px solid #0000;
  border-radius: 50%;
  /* border-right-color: #25b09b; */
  border-right-color: #e03b90;
  animation: l15 1s infinite linear;
}
.loader::before,
.loader::after {
  content: "";
  grid-area: 1/1;
  margin: 2px;
  border: inherit;
  border-radius: 50%;
  animation: l15 2s infinite;
}
.loader::after {
  margin: 8px;
  animation-duration: 3s;
}
@keyframes l15 {
  100% {
    transform: rotate(1turn);
  }
}

.container {
  max-width: 800px;
  z-index: 1;
  margin-top: 200px;
  border: 1px solid rgb(0, 0, 0);
  border-radius: 8px;
  padding: 30px 80px;
  box-shadow: 0 0 30px rgb(0, 0, 0);
  backdrop-filter: blur(10px);
  transition: filter 0.2s ease-in;
}

#login-text {
  text-decoration: none;
  color: #4d73d7;
  font-weight: bold;
  /* font-size: 25px; */
  /* text-shadow: 0 0 2px white; */
}
#login-text:hover {
  transition: 0.1s ease-in;
  /* color: white; */
  text-shadow: 0 0 40px blue;
}

#logout-button {
  margin-top: 10px;
  background-color: rgb(0, 0, 33);
  color: white;
  height: 40px;
  width: 70px;
  font-size: 15px;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
}
#logout-button:hover {
  transition: 0.2s ease-in;
  background-color: white;
  color: rgb(0, 0, 33);
  border: 2px solid rgb(0, 0, 33);
}

.hidden {
  display: none;
}

#contact {
  text-decoration: none;
  color: #4d73d7;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  /* text-shadow: 0 0 2px white; */
}
#contact:hover {
  transition: 0.1s ease-in;
  /* color: white; */
  text-shadow: 0 0 40px blue;
}

#contact-btn {
  text-decoration: none;
  margin-top: 10px;
  background-color: rgb(255, 255, 255);
  color: black;
  height: 40px;
  width: 100px;
  font-size: 15px;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
}

#contact-btn:hover {
  transition: 0.2s ease-in;
  background-color: oklch(26.9% 0 0);
  box-shadow: 0 0 10px #4d73d7;
}
