body {
  background-color: #f5f5f5; /* Light grey background */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.form-container {
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  width: 360px;
  text-align: center;
}

.logo {
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: left;
  width: 200px;
  text-align: left;
}

.logo-icon {
  width: 50px;
  height: 50px;
}
h1 {
  color: #202124;
  font-size: 30px;
  font-weight: 500;
}

.input-group {
  margin-bottom: 20px;
}

.input-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 16px;
  color: #202124;
  box-sizing: border-box;
  transition: border-color 0.3s;
  outline: none;
}

.input-group input:focus {
  border-color: #1a73e8;
}

.button-group {
  display: flex;
  flex-direction: column;
}

button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 4px;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: background-color 0.3s, transform 0.2s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.signup-btn {
  background-color: #34a853; /* Green button */
}

.login-btn {
  background-color: #1a73e8; /* Blue button */
}

.switch-btn {
  background-color: #e0e0e0; /* Light grey button for switching */
  color: #202124; /* Dark grey text */
  font-size: 14px;
  text-align: center;
  border-radius: 4px;
  padding: 8px;
  border: 1px solid transparent;
}

.switch-btn:hover {
  background-color: #cccccc; /* Darker grey on hover */
}

.switch-text {
  margin-top: 10px;
}

button:hover {
  background-color: #333333; /* Dark grey on hover */
  color: #ffffff;
  transform: scale(1.02);
}
