.login-wrapper {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 90%;
  margin: auto; /* ini yang membuatnya berada di tengah horizontal */
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #eafaf1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

h2 {
  color: #2f7a4e;
  text-align: center;
  margin-bottom: 20px;
}

form {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px 12px;
  box-shadow: 0 8px 20px rgba(47, 122, 78, 0.2);
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
}

input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 10px 12px; /* Seimbang kanan dan kiri */
  margin-bottom: 15px;
  border: 1px solid #b5dec7;
  border-radius: 8px;
  font-size: 14px;
  background-color: #f9fff9;
  box-sizing: border-box; /* Tambahan penting agar padding tidak merusak ukuran */
  transition: border-color 0.3s;
  align-items: center;
}

input:focus {
  outline: none;
  border-color: #2f7a4e;
  background-color: #f1fff3;
}

button {
  width: 100%;
  background-color: #2f7a4e;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #25623f;
}

p {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #333;
}

a {
  color: #2f7a4e;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

p[style="color:red"] {
  text-align: center;
  margin-bottom: 15px;
}
