* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #020617;
  color: #e5e7eb;
}

/* BACKGROUND */
#bg-animation {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0,0,0,.55), rgba(0,0,0,.9));
  z-index: 1;
}

/* PAGE */
.login-page {
  position: relative;
  z-index: 2;
  min-height: 100vh;
}

/* DESKTOP – LOGIN NO TOPO CENTRALIZADO */
@media (min-width: 769px) {

  .login-page {
    min-height: 100vh;
    padding: 80px 24px 60px;

    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .login-section {
    margin-bottom: 48px;
  }

  .login-box {
    max-width: 420px;
  }

  .features-section {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .features-row {
    max-width: 1100px;
    width: 100%;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}



/* LOGIN BOX */
.login-box {
  background: #020617;
  border: 1px solid #1e293b;
  border-radius: 14px;
  padding: 32px;
}

.logo-icon {
  width: 100%;
  height: 56px;
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 14px;
}

.logo-icon img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}


.logo h1 {
  text-align: center;
  margin: 0 0 6px;
}

.logo p {
  text-align: center;
  color: #94a3b8;
  margin-bottom: 24px;
}

label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
}

input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #1e293b;
  background: #020617;
  color: #fff;
  margin-bottom: 18px;
}

button {
  width: 100%;
  padding: 14px;

  background: linear-gradient(135deg, #ff9b00, #ffb703);
  border: none;
  border-radius: 10px;

  color: #fff;
  font-weight: 600;
  font-size: 15px;

  cursor: pointer;

  transition: 
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

/* Hover desktop */
button:hover {
  transform: translateY(-2px);

  box-shadow: 
    0 10px 25px rgba(255, 155, 0, 0.35),
    0 0 0 1px rgba(255, 155, 0, 0.6);

  background: linear-gradient(135deg, #ffb703, #ff9b00);
}

/* Clique */
button:active {
  transform: translateY(0);
  box-shadow: 0 6px 15px rgba(255, 155, 0, 0.25);
}

.forgot {
  display: block;
  text-align: center;
  margin-top: 14px;
  color: #94a3b8;
  font-size: 13px;
}

/* FEATURES */
.features-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature {
  background: #020617;
  border: 1px solid #1e293b;
  border-radius: 12px;
  padding: 18px;
}

.feature span {
  display: block;
  font-size: 14px;
  color: #94a3b8;
}

/* MOBILE */
@media (max-width: 768px) {

  .login-page {
    padding: 24px 16px;
  }

  .login-section {
    margin-bottom: 24px;
  }

  .features-row {
    max-width: 420px;
    margin: 0 auto;
  }
}
/* =====================================
   DESKTOP – GRID CORRETO DOS CARDS
===================================== */
@media (min-width: 769px) {

  .features-section {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .features-row {
    width: 100%;
    max-width: 1100px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .feature {
    min-height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
