* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.loader {
  object-fit: cover;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;

}

.logo {
  font-family: "Shadows Into Light";
  font-weight: 400;
  font-style: normal;
  letter-spacing: 5px;
  font-size: 30px;
  color: white;
  position: relative;
  bottom: -25px;
  gap: 100px;
  display: flex;
  flex-direction: center;
}

.loading-text {
  font-size: 3rem;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.dots::after {
  content: '';
  animation: dots 1.5s infinite;
}

@keyframes dots {
  0% {
    content: '';
  }

  33% {
    content: '.';
  }

  66% {
    content: '..';
  }

  100% {
    content: '...';
  }
}

.body {
  text-align: center;
  /* background-color: black; */
  background-image: url(image/Screenshot\ 2025-12-31\ at\ 21.32.12.png);
  background-size: 1600px 900px;
}

* {
  box-sizing: border-box;
}

body.body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* background-color: black; */
  padding: 20px;
}

.loginh2 {
  font-family: 'Lucida Sans', Geneva, Verdana, sans-serif;
  color: white;
  font-size: 50px;
  margin-bottom: 20px;
  text-align: center;
}

.loginbox {
  background-color: white;
  width: 520px;
  height: 500px;
  max-width: 100%;
  padding: 40px 40px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loginbox form {
  width: 100%;
}

.mail1,
.password1 {
  width: 80%;
  padding: 8px 10px;
  margin-top: 5px;
}

.remember,
.fpsw {
  font-size: 14px;
}

.submit {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.sign {
  display: block;
  margin-top: 10px;
  /* color: blue; */
  cursor: pointer;
}

@media (max-width: 480px) {
  .loginbox {
    padding: 20px;
  }

  .fpsw {
    display: block;
    margin-top: 10px;
  }
}


.sign:hover,
.fpsw:hover {
  text-decoration: underline;
}