.fd-login-form-wrapper {
  max-width: 400px;
  margin: 50px auto;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  font-family: "Segoe UI", sans-serif;
}

.fd-login-form-wrapper h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.fd-form-group {
  margin-bottom: 20px;
}

.fd-form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #444;
}

.fd-form-group input {
  width: 100%;
  padding: 10px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.fd-login-button {
  width: 100%;
  background-color: #0073aa;
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s;
}

.fd-login-button:hover {
  background-color: #005a87;
}

.fd-login-message {
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 15px;
  text-align: center;
}

.fd-login-error {
  background-color: #fbeaea;
  color: #d63638;
  border: 1px solid #e0b4b4;
}

.fd-login-success {
  background-color: #e6f5ea;
  color: #2d8a4d;
  border: 1px solid #b3deb9;
}
