

main {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

.signup-box {
  justify-content: center;
  width: 40%;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  text-align: center;
  margin-top: 80px;
}

.signup-box h2 {
  margin-bottom: 20px;
}

.signup-box label {
  display: block;
  margin-bottom: 5px;
  text-align: left;
}

.signup-box input {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.password-box {
  position: relative;
  display: flex;
  align-items: center;
}

.password-box button {
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 10px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.password-box button i {
  font-size: 14px;
  color: #666;
}

.password-box button:hover i {
  color: #333;
}

.password-box input {
  width:100%; /* Ensure enough space for button */
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background-color: #333;
  color: white;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 10px;
}

button:hover {
  background-color: #555;
}

.social-login button {
  background-color: #ccc;
  color: black;
  margin: 5px 0;
  border-radius: 5px;
  padding: 10px;
}

.google-login {
  background-color: #db4437;
  color: white;
}

.facebook-login {
  background-color: #3b5998;
  color: white;
}

p {
  margin-top: 10px;
}

p a {
  color: blue;
  text-decoration: none;
}

p a:hover {
  text-decoration: underline;
}
