body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  background-image: url("../img/background_for_forget_password.png");
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  background-color: #fff;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
}

.form-container {
  text-align: center;
}

h2 {
  margin-bottom: 20px;
}

p {
  margin-bottom: 20px;
}

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

/* logo and company name css */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: left;
  margin-bottom: 20px;
}

.logo {
  width: 100px;
  height: auto;
  margin-right: 10px;
}

.company-name {
  font-size: 24px;
  color: #333;
}
/* End of logo and company name css */

input[type="email"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  width: 100%;
  padding: 10px;
  background-color: transparent;
  color: black;
  border: 3px solid #94c84a;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s, color 0.3s;
}

button:hover {
  background-color: #94c84a;
  color: #fff;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.back-to-login {
  text-align: left;
  margin-bottom: 20px;
  font-size: 12px;
}

@media (max-width: 400px) {
  .container {
    padding: 15px;
  }
}

/* Styles for the success message */
.success-message {
  display: none; /* Hidden by default */
  color: green;
  font-size: 12px;
  margin: 10px 10px;
  text-align: center;
  padding: 10px;
  border: 1px solid green;
  border-radius: 4px;
  background-color: #e6ffe6;
}
