.form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 75vh;
  padding: 30px;
}
form {
  max-width: 800px;
  margin: 20px auto;
  padding: 30px;
  border-radius: 10px;
  background-color: #fff; 
  box-shadow: 0 0 10px rgba(45, 81, 161, 0.1);
  font-family: 'popins', sans-serif;
  border: 1px solid #2d51a1;
  border-color: #2d51a1;
}
/* Title Styling */
form h2 {
  text-align: center;
  color:#2d51a1;
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: bold;
}

/* Label styling */
form label {
  font-weight: 600;
  color:#2d51a1;
  margin-bottom: 8px;
  display: block;
}

/* Input field styling */
form input[type="text"],
form input[type="password"] {
  width: 92%;
  padding: 10px 14px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid #2d51a1;
  border-radius: 6px;
  font-size: 16px;
  transition: border 0.3s ease;
  color:#2d51a1; 
}

form input[type="text"]:focus,
form input[type="password"]:focus {
  color:#2d51a1; 
  outline: none;
}

/* Submit button styling */
form button[type="submit"] {
  background-color: #2d51a1; 
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

form button[type="submit"]:hover {
  background-color:#2d51a1;
}

form button:hover[type="submit"]:hover {
  background-color:white;
  color:#2d51a1;
}