/* Estilos para el popup de reseteo de contraseña */

.popup-reset-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-reset-content {
  position: relative;
  background-color: white;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  width: 90%;
}

.popup-reset-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  transition: color 0.3s;
  background: #ed1c24;
  border: none;
  color: #fff;
  height: 30px;
  width: 30px;
  text-align: center;
  cursor: pointer;
}


.popup-reset-title {
  text-align: center;
  margin: 15px 0 20px 0;
  color: #333;
  font-size: 1.17em;
  text-transform: uppercase;
  font-weight: bold;
}

.popup-reset-form {
  display: flex;
  flex-direction: column;
}

.popup-reset-input {
  margin-bottom: 15px;
  padding: 12px 0;
  font-family: "Gotham Book", sans-serif;
  font-size: 16px;
}

.popup-reset-input:focus {
  outline: none;
}

.popup-reset-submit {
  font-size: 16px;
  transition: background-color 0.3s;
  margin-top: 10px;
  border: none;
  width: 100%;
  background: #007ea0;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  text-transform: inherit;
  font-weight: bold;
}

/* Estilos para los mensajes de feedback */
.popup-reset-feedback {
  margin-top: 15px;
  padding: 10px;
  text-align: center;
  font-size: 14px;
}

.popup-reset-loading {
  background-color: #f8f9fa;
  color: #333;
  border: 1px solid #ddd;
}

.popup-reset-error {
  background-color: #fde8e8;
  color: #d32f2f;
  border: 1px solid #fad2d2;
}

.popup-reset-success {
  background-color: #e8f5e9;
  color: #388e3c;
  border: 1px solid #c8e6c9;
}