
/* style.css */
body {
  margin: 0;
  padding: 0;
  font-family: 'Sarabun', sans-serif;
  background-color: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: #1D1D1B;
}

.login-container {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
  max-width: 400px;
}

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

h2 {
  font-family: 'Exo', sans-serif;
  font-size: 24px;
  margin-bottom: 20px;
  color: #009879;
}

form input[type="text"],
form input[type="password"],
form input[type="email"]{
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

button[type="submit"] {
  background-color: #009879;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #007f68;
}

/* Responsive enhancements */
@media (max-width: 480px) {
  .login-container {
    padding: 20px;
    border-radius: 8px;
  }
  h2 {
    font-size: 20px;
  }
  form input[type="text"],
  form input[type="password"],
  form input[type="email"]{
    padding: 10px;
    font-size: 14px;
  }
  button[type="submit"] {
    padding: 10px 16px;
    font-size: 14px;
  }
  .logo {
    max-width: 120px;
  }
}
