.logo {
  position: relative;
  top: 280px;
  left: 690px;
}

@media (max-width: 768px) {
  body {
    background-position: 30% top;
    background-size: 280%;
  }
  .status-indicator {
    top: 0;
    right: 0;
  }
}

/*animação mayconpsd*/
.smoke-container {
  position: absolute;
  left: 0;
  bottom: 0; /* Novo: alinha na base */
  width: 85vw;
  height: 100vh; /* Reduz a área de atuação */
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.smoke-effect {
  position: absolute;
  bottom: 0; /* Novo: começa na base */
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1920px;
  height: 100vh; /* Mantém altura total para o movimento */
  background: url("../images/smoke-flow.png") no-repeat center;
  background-size: contain;
  animation: smoke-flow 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  opacity: 0;
}

.smoke-effect-duplicate {
  animation-delay: 5s;
}

@keyframes smoke-flow {
  0% {
    transform: translate(-50%, 0) scale(0.95); /* Começa na base */
    opacity: 0;
  }
  15% {
    transform: translate(-50%, -20vh) scale(1); /* Subida inicial rápida */
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -30vh) scale(1.05); /* Meio da animação */
    opacity: 0.8;
  }
  70% {
    transform: translate(-50%, -40vh) scale(1.03); /* Continua subindo */
    opacity: 0.6;
  }
  90% {
    transform: translate(-50%, -45vh) scale(1); /* Desacelera */
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50vh) scale(0.98); /* Limite superior */
    opacity: 0;
  }
}

.flags-new {
  width: 30px;
  height: 30px;
}
.btn-new {
  background-color: transparent;
  border: none;
  color: #fff;
  transition: all 0.4s;
}

.btn-new:hover {
  transform: translateY(-2px);
}
.status-indicator {
  position: relative;
  top: 570px;
  right: -21px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 20px;
  z-index: 100;
}

.status-text {
  font-size: 24px;
  color: #c5c4c3;
  margin-bottom: -12px;
  letter-spacing: 1px;
}

.status-count {
  font-size: 55px;
  font-weight: 300;
  color: #0d6efd;
  text-shadow: 0 0 8px rgba(77, 171, 247, 0.6);
  background: linear-gradient(to bottom, #4dabf7, #339af0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.status-count a {
  text-decoration: none;
}

/* Header */
.login-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.login-header h2 {
  color: white;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.close-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Form Groups */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: white;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
}

/* Form Options */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 10px;
}

.remember-me {
  display: flex;
  align-items: center;
  color: white;
  font-size: 14px;
  cursor: pointer;
  position: relative;
}

.remember-me input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  margin-right: 8px;
  position: relative;
  transition: all 0.3s ease;
}

.remember-me input:checked + .checkmark {
  background-color: white;
  border-color: white;
}

.remember-me input:checked + .checkmark:after {
  content: "✓";
  position: absolute;
  color: #0d6efd;
  font-size: 12px;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.forgot-password {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: white;
}

/* Login Button */
.login-btn {
  width: 100%;
  padding: 14px;
  background: white;
  color: #0d6efd;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.login-btn:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Signup Section */
.signup-section {
  text-align: center;
  margin-bottom: 25px;
}

.signup-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 8px;
}

.signup-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.signup-link:hover {
  opacity: 0.8;
}

/* Divider */
.divider {
  text-align: center;
  position: relative;
  margin: 25px 0;
}

.divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.divider span {
  background: #0d6efd;
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  position: relative;
  z-index: 1;
}

/* Social Login */
.social-login {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.facebook-btn:hover {
  background: rgba(66, 103, 178, 0.2);
  border-color: #4267b2;
}

.google-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Botão para abrir modal (exemplo) */
.open-login-btn {
  padding: 12px 24px;
  background: transparent;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.open-login-btn:hover {
  transform: translateY(-2px);
}

/* Responsivo */
@media (max-width: 480px) {
  .login-form-container {
    margin: 20px;
    padding: 30px 25px;
  }

  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
