body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background: #f0f0f0;
}

.container {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 400px;
  overflow: hidden;
}

.tab-container {
  display: flex;
  justify-content: space-around;
  background: #007BFF;
}

.tab {
  flex: 1;
  padding: 15px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  background: #007BFF;
  border: none;
  outline: none;
}

.tab.active {
  background: #0056b3;
}

.form-container {
  display: none;
  padding: 30px;
  background: #fff;
}

.form-container.active {
  display: block;
}

h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

input[type="email"],
input[type="password"],
input[type="text"] {
  width: 93%;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background: #007BFF;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #0056b3;
}

.remember-me {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.remember-me div {
  display: flex;
  align-items: center;
}

.remember-me input[type="checkbox"] {
  margin-right: 5px; /* Espaço entre o checkbox e o texto */
}

.forgot-password {
  color: #007BFF;
  text-decoration: none;
 font-size: 12px; /* Diminui o tamanho da fonte */
}

.forgot-password:hover {
  text-decoration: underline;
}

.password-container {
  position: relative;
  display: flex;
  align-items: center;
}

.password-container .toggle-password {
  position: absolute;
  right: 10px;
  cursor: pointer;
  color: #888;
}