body {
  margin: 0;
  font-family: Arial;
  background-color: white;
  min-height: 100vh;
}

.container {
  display: flex;
  width: 100%;
  height: 100vh;
  margin: 0;
  background: white;
  border-radius: 0;
  overflow: hidden;
}

.left {
  width: 50%;
  height: 100%;
}

.left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.right {
  width: 50%;
  height: 100%;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 150px;
  margin-bottom: 20px;
}

.right input {
  width: 100%;
  max-width: 320px;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
}

.senha-box {
  width: 100%;
  max-width: 320px;
  position: relative;
  margin: 10px 0;
}

.senha-box input {
  width: 100%;
  padding: 10px 40px 10px 10px;
  margin: 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
}

.senha-box .eye {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 16px;
  color: #666;
}

.right button {
  width: 100%;
  max-width: 320px;
  padding: 10px;
  background: #20639F;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s;
}

.right button:hover {
  background: #174f7d;
}

.lembrar {
  width: 100%;
  max-width: 320px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin: 10px 0;
  font-size: 14px;
}

.lembrar input {
  width: 16px;
  height: 16px;
  margin: 0;
}

/* TABLET */
@media (max-width: 960px) {
  .container {
    width: 100%;
    height: 100vh;
    margin: 0;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  body {
    background-color: white;
  }

  .container {
    flex-direction: column;
    width: 100%;
    height: 100vh;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .left {
    display: none;
  }

  .right {
    width: 100%;
    height: 100%;
    padding: 40px 24px;
    box-sizing: border-box;
  }

  .logo {
    width: 130px;
  }
}