@import '../basics.css';


#fdi-login {
  top: 0;
  left: 0;
  position: fixed;
  display: none;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
}
#fdi-login-background {
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}
#fdi-login-container {
  position: absolute;
  top: 5vh;
  left: 50%;
  margin-left: -250px;
  /*margin-top: -250px;*/
  width: 500px;
  height: 90vh;
  background-color: #fff;
  border: #000 solid 2px;
  border-radius: 5px;
  text-align: center;
  z-index: 2500;
}
#fdi-login-inner-container {
  overflow: auto;
  padding: 20px;
  width: 100%;
  height: 100%;
}
#fdi-login-container h1 {
  font-weight: 600;
  padding: 0;
}
#fdi-login-close-button {
  position: absolute;
  top: 5px;
  right: 5px;
}