form[name="forgotPasswordForm"] img{
    max-width: 200px;
}
.novedad-popup {
  padding: 20px;
  background-color: #fefefe;
  border-radius: 8px;
  max-width: 500px;
  margin: auto;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.novedad-popup h3 {
  margin-top: 0;
  color: #2c3e50;
  text-align: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.novedad-popup dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 6px 12px;
}

.novedad-popup dt {
  font-weight: 600;
  text-align: right;
  color: #555;
}

.novedad-popup dd {
  margin: 0;
  color: #000;
}
md-toast.error-toast {
    background: red;
}

md-toast.error-toast .md-toast-content{
    background: red;
    color: white;
}
@media (min-width: 1920px) {
    md-toast .md-toast-content {
        max-width: 800px;
    }
}
md-toast .md-toast-content {
    overflow: auto;
    display: inline-block;
    width: 90%;
}
md-toast button {
    padding: 5px !important;
    float: right;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 90px;
  right: 25px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s ease;
}

.whatsapp-float:hover::after {
  content: attr(uib-tooltip);
  position: absolute;
  bottom: 100%;
  left: -20px;
  transform: translateX(-50%);
  background-color: #333;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  margin-bottom: 10px;
  z-index: 1001;
}

.whatsapp-float:hover::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 5px);
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
  z-index: 1001;
}