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

html {
  font-size: 10px;
  height: 100%;
}

body {
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* background: linear-gradient(-45deg, #b3e5fc, #e1f5fe, #b3e5fc, #e1f5fe); */
  /* background-color: var(--dark-background-color); */
  background: url('../images/background/about\ pg.jpg') no-repeat center center fixed;
  background-size: cover;
  animation: backgroundMove 15s ease infinite;
}

@keyframes backgroundMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.box {
  background-color: #fcfefc;
  padding: 4rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 50rem;
  /* height: 800px; */
  display: flex;
  flex-direction: column;
}



.logo {
  width: 100%;
  max-width: 12rem;
  margin: 0 auto 5rem;
  display: block;
}

.title-page {
  font-size: 2.4rem;
  margin-bottom: 2.4rem;
  color: #333;
  text-align: center;
}

.box-1 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (max-width: 600px) {
  .box-1 {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 350px) {
  .box-level {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    width: 100%;
  }
}

.inputs {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  display: block;
  color: #333;
}

.input-field {
  width: 100%;
  height: 4.8rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 0 1.2rem;
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.remember-me {
  display: flex;
  align-items: center;
  margin-bottom: 1.6rem;
  gap: 1rem;
}

.create-btn {
  width: 100%;
  height: 4.8rem;
  background-color: #007bff;
  color: white;
  font-size: 1.6rem;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.create-btn:hover {
  background-color: #0056b3;
}

.note {
  font-size: 1.2rem;
  margin-top: 2rem;
  text-align: center;
  color: #555;
}

.note a {
  color: #007bff;
  text-decoration: none;
}

.note a:hover {
  text-decoration: underline;
}

/* .illustration {
  width: 100%;
  max-width: 250px;
  margin: 0 auto 2rem;
  display: block;
}

.illustration {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
} */

footer {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
}

.footer-home-link {
  font-size: 1.4rem;
  text-decoration: none;
}

small {
  color: white;
  font-size: 1.4rem;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/