body {
  font-family: sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f4f4f4;
  margin: 0;
}

.login-container {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  /* Increased border-radius for more rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Adjusted shadow slightly */
  width: 350px;
  text-align: center;
}

.logo {
  margin-bottom: 20px;
  /* Adjust width and height as needed for your logo */
  width: 140px;
  height: auto;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
  text-align: left;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 12px;
  /* Slightly increased padding */
  border: 1px solid #ccc;
  border-radius: 10px;
  /* Rounded corners for inputs */
  box-sizing: border-box;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  /* Inner shadow for depth */
}

button {
  background-color: #01a934;
  color: #fff;
  border: none;
  padding: 12px 20px;
  /* Slightly increased padding */
  border-radius: 10px;
  /* Rounded corners for button */
  cursor: pointer;
  width: 10%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  /* Adjusted shadow */
  font-size: 16px;
  /* Slightly larger font */
  transition: background-color 0.2s ease;
  /* Smooth hover transition */
}

button:hover {
  background-color: #098800;
}

.error-message {
  color: red;
  margin-top: 10px;
  /* Increased margin */
  margin-bottom: 10px;
  /* Added margin below */
  display: none;
  font-size: 14px;
  /* Slightly smaller font */
}

.signup-container {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  /* Rounded corners for container */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Consistent shadow */
  width: 400px;
  text-align: center;
  /* Center logo and title */
}

.logo {
  margin-bottom: 15px;
  /* Space below logo */
  width: 140px;
  /* Match login logo size */
  height: auto;
  /* Centering is handled by text-align on parent */
}

h2 {
  margin-bottom: 25px;
  /* Space below title */
  color: #333;
  /* Centering is handled by text-align on parent */
  /* If logo needs to be truly inline, more complex flexbox/grid needed */
}

.form-group {
  margin-bottom: 15px;
  text-align: left;
  /* Align labels and inputs left */
}

label {
  display: block;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"] {
  width: 200%;
  padding: 12px;
  /* Consistent padding */
  border: 1px solid #ccc;
  border-radius: 10px;
  /* Rounded corners for inputs */
  box-sizing: border-box;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  /* Consistent inset shadow */
}

button {
  background-color: #01a934;
  color: #fff;
  border: none;
  padding: 12px 20px;
  /* Consistent padding */
  border-radius: 10px;
  /* Rounded corners for button */
  cursor: pointer;
  width: auto;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  /* Consistent shadow */
  font-size: 16px;
  /* Consistent font size */
  transition: background-color 0.2s ease;
  /* Consistent transition */
}

button:hover {
  background-color: #098800;
}

.error-message {
  color: red;
  margin-top: 10px;
  /* Increased margin */
  margin-bottom: 10px;
  /* Added margin below */
  display: none;
  font-size: 14px;
  /* Consistent font size */
  text-align: center;
  /* Center error message */
}