#lost-password {
	color: #FFFF00 !important;
	font-size: xx-large;
	font-weight: bold !important;
        text-shadow: 0 0 2px rgba(0, 0, 0, .4);
}
#lost-password::after { 
  content: "\A Hier eine neues Passwort anforden!";
  font-size: medium;
 
  white-space: pre;
  color: #FF0000;
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  10% {
    opacity: 0;
  }
}