.um-form-container {
  max-width: 400px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-family: 'Segoe UI', sans-serif;
}

.um-form-container h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #333;
}

.um-form-container input,
.um-form-container select,
.um-form-container button {

  width: 100%;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

.um-form-container input:focus,
.um-form-container select:focus {
  border-color: #9ca76b;
  outline: none;
  box-shadow: 0 0 0 2px rgba(5, 65, 146, 0.1);
}

.um-form-container form input,
.um-form-container form select,
.um-form-container form textarea {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #f9f9f9;
    box-sizing: border-box;
}


.save-btn {
  background-color: #9ca76b !important;
  color: #fff;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease;
  transition: transform 0.2s ease, color 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.save-btn:hover {
  background-color: #28a745 !important;
  transform: translateY(-3px);
}

.logout-btn {
      background-color: #dc3545;
      color: #fff;
      cursor: pointer;
      border: none;
      transition: background-color 0.3s ease;
      transition: transform 0.2s ease, color 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.logout-btn:hover {
    background-color: #b20000;
    transform: translateY(-3px);
}

/* Stil placeholder + autocomplete */
.um-form-container input::placeholder,
.um-form-container select::placeholder {
  color: #6b7280; /* gri moderat */
  opacity: 1;
}

/* Forțăm culoarea textului în input-uri și select */
.um-form-container input,
.um-form-container select {
  color: #111827;
  background-color: #fff;
}

/* Rezolvă problema la autocomplete pentru parolă */
.um-form-container input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset !important;
  box-shadow: 0 0 0px 1000px #fff inset !important;
  -webkit-text-fill-color: #111827 !important;
}

/* Icon calendar mai vizibil + padding */
.um-form-container input[type=\"date\"] {
  padding-right: 2rem;
  color: #111827;
}

