body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: url('Artboard\ 1.png');
  background-repeat: no-repeat; 
  background-size: cover;
}

.login-container {
  align-items: center;
  background-color: #ffffff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
  border-radius: 25px;

}

.logo {
  text-align: center;
  margin-bottom: 20px;
}

.logo img {
  max-width: 200px;
}

h2 {
  font-family: sans-serif;
  text-align: center;
  font-size: 35px;
}

.login-form input {
  display: block;
  width: 380px;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.form-wrapper {
  display: flex;
  justify-content: center;
}

.forgot {
  font-family:Arial, Helvetica, sans-serif;
  color:royalblue;
  padding-left: 270px;
  
}


/* Style the submit button */
.submit_button {
  display: inline-block;
  padding: 10px 20px;
  width: 150px;
  display: flex;
  justify-content: center;
  background-color: #007bff; /* Blue background color */
  color: #fff; /* White text color */
  text-decoration: none;
  border-radius: 5px;
  font-size: 20px;
  padding-top: 10px;

}

/* Optional: Hover effect for the button */
.submit_button:hover {
  background-color: #0056b3; /* Darker blue on hover */
  cursor: pointer;
}

.login-form button {
  width: 200px;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  

}

.login-form button:hover {
  background-color: #0056b3;
}

.submit_container {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}


