body {
  font-family: "Times New Roman", serif;
  background: linear-gradient(to right, #2c3e50, #34495e);
  margin: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100dvh;
}

.login-container {
  width: 400px; /* diperbesar agar default lebih mirip zoom */
  background: #f4f1ea;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
  text-align: center;
  box-sizing: border-box;
}

.logo {
  margin-bottom: 15px;
  border-bottom: 2px solid #2c3e50;
  padding-bottom: 10px;
}

.logo img {
  width: 100%;
  max-width: 200px; /* logo lebih besar default */
  height: auto;
}

form {
  text-align: left;
}

label {
  font-weight: bold;
  font-size: 16px; /* diperbesar biar mirip hasil zoom */
  color: #2c3e50;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 14px;
  margin: 10px 0 20px 0;
  border: 1px solid #aaa;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 16px; /* font input lebih besar */
}

button {
  width: 100%;
  padding: 14px;
  background: #2c3e50;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 18px; /* lebih besar */
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #1a242f;
}

.footer {
  margin-top: 15px;
  font-size: 13px;
  color: #666;
}
@media only screen and (max-width: 600px) {
  .login-container {
    width: 600px; /* diperbesar agar default lebih mirip zoom */
    background: #f4f1ea;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
    text-align: center;
    box-sizing: border-box;
  }
}
