body {
  background: linear-gradient(to bottom left, #333333, #eaeaea);
  position: relative;
  overflow: hidden;
}
body .flare {
  position: absolute;
  background-color: #eeae8b;
  border-radius: 50%;
  opacity: 0.2;
  animation: flare-move 6s infinite alternate;
}
body .flare1 {
  top: 20%;
  left: 10%;
  width: 300px;
  height: 300px;
  animation-delay: 0s;
}
body .flare2 {
  top: 50%;
  right: 15%;
  width: 200px;
  height: 200px;
  z-index: -1;
  animation-delay: 0s;
}
body .floating-object {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  opacity: 0.5;
  animation: float 8s infinite ease-in-out;
}
body .floating1 {
  top: 10%;
  left: 5%;
  width: 100px;
  height: 100px;
  animation-delay: 0s;
}
body .floating2 {
  top: 70%;
  right: 10%;
  width: 150px;
  height: 150px;
  animation-delay: 1.5s;
}
body .floating3 {
  top: 30%;
  left: 60%;
  width: 120px;
  height: 120px;
  animation-delay: 0.5s;
}
body .floating4 {
  top: 80%;
  right: 5%;
  width: 80px;
  height: 80px;
  animation-delay: 2s;
}

@keyframes flare-move {
  from {
    transform: scale(0.6) translateY(-50px);
  }
  to {
    transform: scale(1.2) translateY(50px);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

.form-container {
  min-width: 400px;
  width: 100%;
  background-color: #eaeaea;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.form-container h2 {
  color: #333333;
  margin-bottom: 20px;
  font-size: 1.8em;
}
.form-container label {
  font-weight: bold;
  color: #333333;
  display: block;
  margin-bottom: 5px;
}
.form-container input[type=text],
.form-container input[type=email],
.form-container input[type=password] {
  width: 100%;
  padding: 10px;
  margin: 8px 0 15px;
  border: 1px solid #333333;
  border-radius: 4px;
  transition: border-color 0.3s;
}
.form-container input[type=text]:focus,
.form-container input[type=email]:focus,
.form-container input[type=password]:focus {
  border-color: #eeae8b;
  outline: none;
}
.form-container button[type=submit] {
  background-color: #eeae8b;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
  margin-top: 10px;
  transition: background-color 0.3s;
}
.form-container button[type=submit]:hover {
  background-color: #e78f5f;
}
.form-container .form-error {
  color: #eeae8b;
  font-size: 0.9em;
  margin-top: -10px;
}
.form-container p {
  margin-top: 15px;
  font-size: 1em;
}
.form-container p a {
  color: #eeae8b;
  text-decoration: none;
  font-weight: bold;
}
.form-container p a:hover {
  color: #e47f48;
}

@media (max-width: 1024px) {
  .flare, .floating-object {
    display: none;
  }
  .floating1 {
    top: 5%;
    left: 10%;
  }
  .floating2 {
    top: 60%;
    right: 15%;
  }
  .floating3 {
    top: 25%;
    left: 50%;
  }
  .floating4 {
    top: 75%;
    right: 10%;
  }
  img {
    max-width: 250px;
  }
}
@media (max-width: 768px) {
  .flare, .floating-object {
    display: none;
  }
  img {
    max-width: 200px;
    display: block;
  }
  .form-container {
    min-width: 0px;
    width: 400px;
    padding: 15px;
    max-width: 90%;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  img {
    display: block;
    margin: 0 auto 20px;
    max-width: 150px;
  }
  h2 {
    font-size: 1.2em;
  }
  input[type=text],
  input[type=email],
  input[type=password] {
    padding: 8px;
    font-size: 0.9em;
  }
  button[type=submit] {
    padding: 10px;
    font-size: 0.9em;
  }
}
header, footer {
  display: none;
}/*# sourceMappingURL=authentication.css.map */