body {
  font-family: Arial, sans-serif;
  background: url('/assets/images/coba.png');
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}
.error{
  font-size: 12px;
  color: rgb(255, 0, 0);
}
.logo-container {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
}

.logo {
  max-width: 270px;
  height: auto;
  transition: max-width 0.3s;
}
.container {
  background-color: #fce9e9;
  padding: 2rem;
  border-radius: 30px;
  box-shadow: 13px 13px 13px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  width: 600px;
}
.form-container {
  flex: 1;
  padding-right: 20px;
}
.image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-container img {
  max-width: 100%;
  height: 155%;
  border-radius: 20px;
}
h2 {
  color: #6a3093;
  margin-bottom: 20px;
}
form {
  display: flex;
  flex-direction: column;
}
input {
  margin: 10px 0;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: rgba(255,255,255,0.5);
}
button {
  background-color: #6a3093;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .logo {
      max-width: 200px; 
  }

  .image-container {
    display: none;
}
h2 {
  text-align: center;
}
.container {

  width: 350px;
}

  .form-container {
    flex: 1;
    padding-right: 20px;
}
}
