* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}

body {
  background-color: #ffffff;  /* Cor de fundo para o tema claro */
  color: black;
  transition: background-color 0.3s, color 0.3s; /* Transições suaves */
}

body.dark-mode {
  background-color: #121212;  /* Cor de fundo para o tema escuro */
  color: white;
}
body {
  background-color: #1f2937;
  color: white;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

body.dark-mode {
  background-color: #121212;
  color: white;
}

body.dark #sunIcon {
  stroke: #f9fafb; 
}

#themeToggle {
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  transition: transform 0.3s;
  z-index: 10;
}

#themeToggle:hover {
  transform: scale(1.1);
}

.logo-img {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
  border-radius: 50%;
}

.logo-header {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 20px;
  left: 20px;
  border-radius: 50%;
}

.header {
  position: absolute;
  top: 24px;
  left: 60px;
  font-size: 18px;
  font-weight: 600;
}

.title{
  margin: 0;
}

.inputLogin {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px; /* Gap menor entre as divs */
  width: 100%;
}

.inputLogin label {
  width: 17%;
  font-weight: 600;
  color: #e5e7eb;
  font-size: 0.75rem;
  text-align: left;
}

.inputLogin input {
  width: 82%; /* Maior largura */
  height: 38px; /* Menor altura */
  padding: 0 14px;
  font-size: 0.75rem;
  border-radius: 8px;
  border: 1px solid #4b5563;
  background-color: #1f2937;
  color: white;
  transition: border 0.3s;
}

.inputLogin input::placeholder {
  color: #9ca3af;
}

.inputLogin input:focus {
  border-color: #60a5fa;
  outline: none;
}

.login-container {
  background-color: #111827;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  width: 100%;
  max-width: 320px;
}

.login-container button {
  width: 100%;
  padding: 12px;
  background-color: #3b82f6;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 10px;
}

.login-container button:hover {
  background-color: #2563eb;
}

.login-container h1 {
  margin-bottom: 2px;
  font-size: 30px;
}

.login-container p {
  margin-bottom: 20px;
  margin-top: 2px;
  font-size: 12px;
}

.login-container a {
  color: #60a5fa;
  text-decoration: none;
}

.login-container a:hover {
  text-decoration: underline;
}

.remember-forgot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.remember-me {
  display: flex;
  align-items: center;
}

.remember-me label {
  margin-left: 5px;
  font-size: 0.75rem;
}

.remember-forgot a {
  font-size: 0.75rem;
  color: #3b82f6;
  text-decoration: none;
}

.remember-forgot a:hover {
  text-decoration: underline;
}

.criarconta{
  font-size: 0.50rem;
}
/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-content {
  background-color: #111827;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 480px;
  color: white;
  position: relative;
}

.modal-content h2 {
  text-align: center;
  margin-bottom: 20px;
}

.modal-content label {
  display: block;
  margin-bottom: 4px;
  font-weight: bold;
  text-align: left;
}

.modal-content input {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  background-color: #374151;
  color: white;
  border: 1px solid #4b5563;
  border-radius: 8px;
}

.modal-content button {
  width: 100%;
  padding: 12px;
  background-color: #3b82f6;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.modal-content button:hover {
  background-color: #2563eb;
}

.close {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

/* Footer */
.footer {
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  background-color: transparent;
  text-align: center;
  font-size: 0.9rem;
  color: rgb(200, 200, 200);
  padding: 10px 0px;
}

@media (max-width: 768px) {
  .login-container {
      width: 90%;
      max-width: 350px;
  }

  .inputLogin input {
      width: 70%;
      height: 40px;
  }

  #themeToggle {
      width: 40px;
      height: 40px;
  }
}