
/****** 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[type="text"],
.registro-card form input[type="email"],
.registro-card form input[type="password"],
.registro-card form input[type="number"] {
  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 form input[type="checkbox"] {
  width: 5%;
  padding: 0;
  margin-bottom: 14px;
 
}
		
.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;
}

.password-hint {
  font-size: 11px;
  color: #888;
  margin-top: 25px;
  margin-bottom: -20px;
  text-align: left;
  padding-left: 5px;
}

/* Términos y condiciones */
.terminos-condiciones {
  font-size: 12px;
  color: #69717a;
  text-align: left;
  margin-bottom: 20px;
  padding: 50px 5px 0px 0px;
}

.terminos-condiciones label {
  display: flex;
  font-weight: normal;
  cursor: pointer;
}

.terminos-condiciones input[type="checkbox"] {
  vertical-align: middle;
  margin-right: 6px;
}

.terminos-condiciones a {
  color: #DF107E;
  text-decoration: underline;
}



/* 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;
}

/* Notices */
.notice.success {
  background: #d4edda;
  border: 1px solid #28a745;
  padding: 15px;
  margin: 15px auto;
  max-width: 400px;
  border-radius: 10px;
  color: #155724;
  font-weight: bold;
  text-align: center;
}

.notice.error {
  background: #f8d7da;
  border: 1px solid #dc3545;
  padding: 15px;
  margin: 15px auto;
  max-width: 400px;
  border-radius: 10px;
  color: #721c24;
  font-weight: bold;
  text-align: center;
}

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

/* Barra usuario */
.barra-usuario {
  font-size: 12px;
  color: #444;
  text-align: right;
  padding: 10px 20px;
}

.barra-usuario a {
  color: #E00785;
  font-weight: bold;
  text-decoration: none;
}

.barra-usuario a:hover {
  text-decoration: underline;
}
