/*https://www.cssscript.com/pretty-simple-modal-window-pure-css/*/

p {
  margin-top: 0;
}

.fullscreen-container {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(90, 90, 90, 0.5);
  z-index: 9999;
}


.modal {
  display: block; /* Hidden by default */
  position: fixed; /* Stay in place */
  border: 1px solid #858585;
  z-index: 1; /* Sit on top */
  top:50%;
  left:50%;
  width:500px;  /* adjust as per your needs */
  height:400px;   /* adjust as per your needs */
  margin-left:-200px;   /* negative half of width above */
  margin-top:-200px;   /* negative half of height above */
  overflow: auto; /* Enable scroll if needed */  
  background-color: rgb(255,255,255); /* Fallback color */
  border-radius: 10px;
  padding: 40px;

 -webkit-box-shadow: 2px 2px 4px 4px rgba(50, 50, 50, 0.3);
-moz-box-shadow:    2px 2px 4px 4px rgba(50, 50, 50, 0.3);
box-shadow:         2px 2px 4px 4px rgba(50, 50, 50, 0.3);
}

/* Modal Content/Box */

.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

span.close{
  text-anchor :end;
  font-size  : 18px;
  font-weight:lighter ;
  cursor: pointer;
  color: #DDD;
}

#wrong_pw{
  display: none;
  font-size  : 12px;
  background-color: #FFCEC8;
}

#need{
  display: none;
  font-size  : 12px;
  background-color: #FFCEC8;
}