@font-face {
    font-family: 'calling_coderegular';
    src: url('../../fonts/callingcode-regular-webfont.woff2') format('woff2'),
         url('../../fonts/callingcode-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

* {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html {
 background: rgba(0,30,0);
 overflow-x: hidden;
 overflow-y: hidden;
 color: rgb(150, 230, 185);
 overflow: hidden;
 font-family: 'calling_coderegular', sans-serif;
}


img{
	display: block;
	margin: 0 auto;
  max-width: 100%;
}

p{
  font-size: 1.3rem;
  text-align: center;
  margin: 10px 0;
}

input{
  background: rgba(200,200,200,0);
  border: 1px solid rgb(150, 230, 185);
  padding: 6px;
  min-width: 150px;
  color: rgb(150, 230, 185);
}

placeholder{
  color: rgb(150, 230, 185);
}

input:focus{
  outline: none;
}

button{
  min-width: 80px;
  margin: 0 10px;
  color: rgb(150, 230, 185);
  border: 1px solid rgb(150, 230, 185);
  background-color: rgba(255,255, 255, 0);
  padding: 6px;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: background-color .4s;
}

button:hover{
  cursor: pointer;
  background-color: rgba(255,255, 255, .2);
}

#matrix {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index:-5;
}

.connexion{
  margin: 20% auto;
  display: flex;
  flex-direction: column;
  width: 400px;
  padding: 20px;
  background: rgba(155, 255, 235,.2);
  z-index: 1;
}

/*input:placeholder-shown {
  border: 1px solid yellow;
}*/

#erreur{
  position: absolute;
  top: 62%;
  right: 30%;
  color: rgb(150, 230, 185);
  background: rgba(200,200,200,.2);
  width: 180px;
  text-align:center;
  padding: 20px;
  border: 1px solid rgb(150, 230, 185);
  z-index: 2;
}

#erreur::after{
	content: "x";	
	position: absolute;
	top: 0;
	right: 10px;
	color: rgba(150, 230, 185,1);
	font-size: 1.5rem;
	/*z-index: 3;*/
	  cursor: pointer;

	transition: color .4s;
}

#erreur:hover::after{	
	color: rgba(150, 230, 185,.5);
}

#erreur span{
  font-size: 2rem;
}

@media  screen and (max-width: 1366px) {
  .connexion{
    margin: 2% auto;
    display: flex;
    flex-direction: column;
    width: 400px;
    padding: 20px;
    background: rgba(200,200,200,.2);
  }

  #erreur{
  top: 20%;
    right: 18%;
  }
}
