
.custom-login-form {
  background-color: #111; 
  border: 1px solid #33cc99; 
  border-radius: 1rem;
  padding: 2rem;
  max-width: 400px;
  margin: 100px auto;
  color: #fff; 
  font-family: "Helvetica", sans-serif;
}


.custom-login-form input[type="text"],
.custom-login-form input[type="password"],
.custom-login-form input[type="email"] {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #222;
  border: 1px solid #aaa;
  border-radius: 0.75rem;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
  box-sizing: border-box;
}

.custom-login-form input::placeholder {
  color: #aaa;
}


.custom-login-form input[type="submit"] {
  width: 100%;
  background-color: #33cc99;
  color: #111;
  border: none;
  border-radius: 0.75rem;
  padding: 0.75rem;
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.custom-login-form input[type="submit"]:hover {
  background-color: #28b285;
}


.custom-login-form a {
  color: #33cc99;
  text-decoration: underline;
}
