body {
  top: 0;
  left: 0;
  bottom: 0;
  left: 0;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  outline: none;
  text-decoration: none;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.container {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: space-between;
  background-image: url(../img/login.png);
  z-index: 88;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.left,
.right {
  width: 50%;
  height: 100vh;
}

.right {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

form {
  background-color: #fff;
  width: 70%;
  height: 70%;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  align-items: center;
  text-align: center;
}

label {
  display: block;
  margin-bottom: 8px;
  color: rgb(140, 140, 182);
  font-size: 20px;
  font-weight: bold;
}

.label {
  margin-top: 100px;
  font-size: 20px;
  font-weight: bold;
  color: rgb(140, 140, 182);
}

.ket {
  font-size: 15px;
  font-weight: bold;
  color: salmon;
}

input {
  width: 100%;
  padding: 8px;
  margin-bottom: 16px;
  box-sizing: border-box;
  border-radius: 10px;
  height: 8vh;
  border: 2px solid lightblue;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

input::placeholder {
  /* Atur warna placeholder di sini */
  color: rgb(171, 165, 187); /* Contoh warna abu-abu */
  font-size: 15px;
  font-weight: bold;
}

button {
  background-color: #4caf50;
  width: 100%;
  height: 8vh;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  margin-top: 4vh;
  color: white;
  font-size: 20px;
  font-weight: bold;
}

button:hover {
  color: rgb(255, 255, 255);
  background-color: #fb9d14;
}

img {
  display: none;
}

/* Mobile */

@media (max-width: 768px) {
  html {
    font-size: 55%;
  }

  .container .left {
    display: none;
  }

  .container .right {
    width: 100vw;
    margin: auto;
    background-image: url(../img/login_responsive.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
  }

  .container .right form {
    width: 80vw;
    margin-top: -24vh;
    background-color: rgb(255, 255, 255, 0);
  }

  .container .right form label {
    color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  button {
    background-color: #4caf50;
    width: 50%;
    height: 8vh;
    color: #fff;
  }

  button:hover {
    color: rgb(255, 255, 255);
    background-color: salmon;
  }

  .ket {
    font-size: 15px;
  }

  .container .right img {
    display: inline-block;
    margin: auto;
    width: 70vw;
    height: 30vh;
  }
}
