/* ========================================
   PÁGINA DE LOGIN - 100% RESPONSIVO + LINDO
   ======================================== */

.login-body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #121212 0%, #1a1a1a 50%, #ff6b35 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

.login-container {
  width: 100%;
  max-width: 420px;
  padding: 16px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.login-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 40px 32px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
              0 0 0 1px rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.logo-wrapper {
  margin-bottom: 20px;
}

.login-logo {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  object-fit: contain;
  border: 3px solid #ff6b35;
  padding: 6px;
  background: white;
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.2);
}

.login-card h1 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 6px 0;
  letter-spacing: -0.5px;
}

.subtitle {
  color: #555;
  font-size: 14.5px;
  margin: 0 0 28px 0;
  line-height: 1.5;
  padding: 0 8px;
}

/* CAMPOS RESPONSIVOS */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.input-wrapper {
  position: relative;
  width: 100%;
}

.input-wrapper i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff6b35;
  font-size: 17px;
  z-index: 2;
}

.input-wrapper input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  font-size: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 14px;
  background: #fdfdfd;
  color: #1a1a1a;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.input-wrapper input:focus {
  border-color: #ff6b35;
  background: white;
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
}

/* BOTÃO RESPONSIVO */
.btn-login {
  margin-top: 10px;
  background: linear-gradient(135deg, #ff6b35, #e55a2b);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 14px;
  font-size: 16.5px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.3);
  width: 100%;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 107, 53, 0.4);
}

.btn-login i {
  font-size: 17px;
  transition: transform 0.3s ease;
}

.btn-login:hover i {
  transform: translateX(3px);
}

/* RESPONSIVO PERFEITO */
@media (max-width: 480px) {
  .login-container {
    padding: 12px;
  }
  .login-card {
    padding: 32px 24px;
    border-radius: 20px;
  }
  .login-logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }
  .login-card h1 {
    font-size: 24px;
  }
  .subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .input-wrapper input {
    padding: 15px 15px 15px 46px;
    font-size: 15.5px;
  }
  .btn-login {
    padding: 15px;
    font-size: 16px;
  }
}

@media (max-width: 360px) {
  .login-card {
    padding: 28px 20px;
  }
  .login-logo {
    width: 56px;
    height: 56px;
  }
}