* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
  background: #fff;
}

.container {
  display: flex;
  height: 100vh;
}

.left-panel {
  flex: 1;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.left-panel img {
  max-width: 100%;
  height: auto;
}

.right-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.form-container {
  max-width: 360px;
  width: 100%;
}

.logo {
  width: 150px;
  margin-bottom: 20px;
}

h2 {
  margin-bottom: 10px;
  font-size: 24px;
  color: #333;
}

p {
  margin-bottom: 20px;
  font-size: 14px;
  color: #555;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  font-size: 14px;
  margin-bottom: 5px;
  color: #333;
}

input {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.password-wrapper {
  position: relative;
}

.eye-icon {
  /* position: absolute; */
  /* right: 10px; */
  top: 19%;
  /* cursor: pointer; */
}

button {
  padding: 12px;
  background-color: #0057ff;
  color: white;
  font-size: 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #0043cc;
}

.links {
  margin-top: 15px;
  font-size: 13px;
  text-align: center;
}

.links a {
  color: #0057ff;
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .left-panel, .right-panel {
    flex: unset;
    width: 100%;
  }

  .left-panel {
    order: 2;
    padding: 1rem;
  }

  .right-panel {
    order: 1;
    padding: 1rem;
  }

  .form-container {
    max-width: 100%;
  }
}

.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-wrapper input {
  width: 100%;
  padding-right: 40px; /* Espaço para o ícone */
}

.eye-icon {
  position: absolute;
  right: 12px;
  cursor: pointer;
  font-size: 18px;
  color: #888;
}
