/*
Theme Name: Hello Elementor Child
Template: hello-elementor
*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body
{
    font-family: 'Helvetica', "Roboto", sans-serif;
 
}


/****** REGISTRO MEDICO ******/ 

/* Contenedor */
.registro-card {
  max-width: 350px;
  margin: 40px auto;
  background: white;
  border-radius: 15px;
  padding: 30px 25px 100px; 
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-family: 'Helvetica', sans-serif;
  text-align: center;
  position: relative;
}

/* Títulos */
.registro-card h2 {
  font-size: 20px;
 margin-bottom: 0px;
  color:#444444;
}

.registro-card p {
  font-size: 10px;
  font-weight: bold;
  color: #444444;
 margin-bottom: 20px;
}

/* Estilo general de los inputs */
.registro-card form input {
  width: 100%;
  padding: 10px 15px;
  margin-bottom: 14px;
  border: 1px solid #dbdbdb;
  border-radius: 25px;
  outline: none;
  font-size: 14px;
  color:#69717a;
  box-sizing: border-box;
}
		
.registro-card  ::placeholder {
  color: #8f8f8f;
  opacity: 0.8; /* Firefox */
}

.registro-card ::-ms-input-placeholder { /* Edge 12 -18 */
  color: #8f8f8f;
  opacity: 0.8;
}

/* Contenedor de la contraseña + ícono */
.password-wrapper {
  position: relative;
}

.password-wrapper input {
  width: 100%;
  padding-right: 40px;
}

/* Ícono de mostrar/ocultar */
.toggle-password {
  position: absolute;
  right: 15px;
  top: 12px;
  cursor: pointer;
  font-size: 18px;
}

/* Indicador de fortaleza base */
.password-meter {
  font-size: 13px;
  padding: 8px;
  border-radius: 6px;
  margin-top: 5px;
  margin-bottom: -20px;
  background: #eee;
  color: #666;
  text-align: center;
}

/* Colores según fortaleza */
.password-meter.weak {
  background-color: #ffdddd;
  color: #c0392b;
}

.password-meter.medium {
  background-color: #fff3cd;
  color: #d68910;
}

.password-meter.strong {
  background-color: #d4edda;
  color: #28a745;
}

/* Botón */
.registro-btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  border: none;
  padding: 18px 0;
  background: #DF107E;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

.registro-btn:hover {
  background: #c10c6e;
}

/* Enlace de login */
.login-link {
  text-align: center;
  font-size: 14px;
  background: white;
  color:#69717B;
}