/* =========================
   RESET / BASE
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-weight: 300;
}

html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Inter', sans-serif;
  color: white;
  overflow: hidden;
}

/* =========================
   BOX CENTRAL
========================= */
.box {
  width: 300px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wrapper {
  width: 100%;
  text-align: center;
}

/* =========================
   LOGO
========================= */
.logo {
  width: 250px;
  margin-top: -10px;
  margin-bottom: -10px;
}

/* =========================
   FORMULÁRIO
========================= */
form {
  padding: 20px 0;
}

form input {
  appearance: none;
  outline: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.2);
  width: 250px;
  border-radius: 15px;
  padding: 10px 15px;
  margin: 0 auto 10px auto;
  display: block;
  text-align: center;
  font-size: 16px;
  color: white;
  transition: all 0.25s ease;
}

form input::placeholder {
  color: rgba(255,255,255,0.8);
}

form input:hover {
  background-color: rgba(255, 255, 255, 0.35);
}

form input:focus {
  background-color: white;
  width: 280px;
  color: #7c5af1;
}

/* =========================
   BOTÃO
========================= */
#login-button {
  appearance: none;
  outline: 0;
  background-color: #ff891a;
  border: 0;
  padding: 10px 15px;
  color: white;
  border-radius: 25px;
  width: 65%;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.25s ease;
}

#login-button:hover {
  background-color: #ff7a00;
}

/* =========================
   FUNDO ANIMADO
========================= */
.bg {
  animation: slide 3s ease-in-out infinite alternate;
  background-image: linear-gradient(-60deg, #0060bf 50%, rgb(77, 0, 201) 50%);
  position: fixed;
  top: 0;
  left: -50%;
  right: -50%;
  bottom: 0;
  opacity: 0.5;
  z-index: -1;
}

.bg2 {
  animation-direction: alternate-reverse;
  animation-duration: 4s;
}

.bg3 {
  animation-duration: 5s;
}

@keyframes slide {
  0% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(25%);
  }
}

/* =========================
   RODAPÉ
========================= */
.rodape-premium {
  display: flex;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 10px;
  padding-bottom: 7px;
  z-index: 1000;
  font-size: 11px;
  font-weight: 200;
  color: rgb(222, 222, 222);
  border-top: 1px solid rgba(234, 234, 234, 0.2);
  background-color: rgba(255, 255, 255, 0.053);
}

.rodape-premium b {
  font-weight: 600;
  color: white;
  font-size: 12px;
}
