html {
  
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: arial;
  background-color: #1f1f1f;
  height: 100%;
  font-size: 1.3em;
}


.box22 {
position: absolute;
    top: 50%;
    right: 50%;
    width: 95vw;
    transform: translate(50%,-50%);
    text-align: center;
    color: white;
}

.box2 {
  position: absolute;
  top: 50%; right: 50%;
  width: 95vw;
  
  transform: translate(50%,-50%);
text-align: center;
color: white;
	
}

.box {
  position: absolute;
  top: 50%; right: 50%;
  width: 98vw;
  transform: translate(50%,-50%);
  padding: 0;

\
	
}

p {
	  padding: 10px;
}



.formout{
	  display: flex;
  justify-content: center;
 
  
   bottom:0;
	
}

form {
  margin: auto;

 
}








#email,
#login,
#password {
  border: 2px solid white;
  margin: 30px 0;
  padding: 10px;
  width: auto;
  max-width: 100%;
  overflow: visible;
  outline: 0;
  background: 0 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  background: white;
  color: black;
}

#email::-moz-selection,
#login::-moz-selection,
#password::-moz-selection {
  background: #000
}

#email::selection,
#login::selection,
#password::selection {
  background: #000
}


button {
  --top: 50%;
  --left: 50%;
  --size: 100%;
  --background: hsl(265, 100%, 50%);
  --color: hsl(265, 100%, 100%);
  /* :p */
  --border: none;
  color: black;
  background: transparent;
  border: 1px solid var(--border);

  font-family: inherit;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  border-radius: 5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  /* overflow and position matching the pseudo elements */
  overflow: hidden;
  position: relative;
  /* remove the default outline
! substituted with the pseudo elements
*/
  outline: none;
}
/* if existing, separate the inline icon from the text which follows */
button svg {
  width: 1em;
  height: auto;
  display: inline-block;
  margin-inline-end: 0.2rem;
}

/* with a pseudo element add a semitransparent layer with the same color of the text */
button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: currentColor;
  border-radius: inherit;
  opacity: 0;
}


/* with another pseudo element add a semitransparent layer clipped to be a circle */
button:after {
  content: "";
  position: absolute;
  top: var(--top);
  left: var(--left);
  transform: translate(-50%, -50%);
  width: var(--size);
  height: var(--size);
  
  border-radius: inherit;
}
/*
! add the transition only as the active state is "enabled"
! add a negative delay for the clip to already start from a small circle
! add a delay for the opacity to follow the clip-path
*/
button:active:after {
  clip-path: circle(100%);
  opacity: 0;
  transition: clip-path 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53), opacity 0.4s ease-in-out;
  transition-delay: -0.1s, 0.5s;
}


@keyframes shake {
  0%, 100% {transform: translateX(0px);}
  10%, 30%, 50%, 70%, 90% {transform: translateX(-10px);}
  20%, 40%, 60%, 80% {transform: translateX(10px);}
}
.shake {
  animation-name: shake;
  animation-duration: 3s;
}



.password {
  width: 222px;
  background: #fff;
  position: relative;
  padding: 16px 0 5px 0;
  border-radius: 6px;
}
.password input {
  width: 100%;
  border: 0;
  outline: none;
  line-height: 20px;
  font-size: 16px;
  padding: 9px 40px 0 16px;
  font-family: inherit;
  background: none;
  color: #151924;
}
.password input:valid + label, .password input:focus + label {
  -webkit-transform: translate(0, -4px) scale(0.72);
          transform: translate(0, -4px) scale(0.72);
}
.password input:valid + label + .unlock, .password input:focus + label + .unlock {
  opacity: 1;
}
.password label {
  position: absolute;
  z-index: 1;
  left: 16px;
  top: 50%;
  line-height: 24px;
  font-size: 16px;
  margin: -12px 0 0 0;
  cursor: text;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.password .unlock {
  position: absolute;
  z-index: 2;
  stroke: none;
  fill: #3F4656;
  display: block;
  width: 12px;
  height: 16px;
  right: 16px;
  top: 50%;
  opacity: .2;
  cursor: pointer;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: opacity .4s ease;
  transition: opacity .4s ease;
}
.password .error {
  position: absolute;
  right: 0;
  bottom: 4px;
  display: block;
  width: 16px;
  height: 14px;
  opacity: 0;
  stroke: none;
  z-index: 5;
  fill: #EB3E60;
  -webkit-transform: scale(0.4);
          transform: scale(0.4);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.password:before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  border-style: solid;
  border-width: 0 0 0 0;
  z-index: 4;
  border-color: #fff #EDF0F9;
  -webkit-transition: all .3s ease .35s;
  transition: all .3s ease .35s;
}
.password.false {
  -webkit-animation: shake 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
          animation: shake 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}
.password.false:before {
  border-width: 38px 32px 0 0;
  border-color: #C9D5EA #EDF0F9;
  border-radius: 6px 0 0 0;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.password.false .error {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: opacity 0.3s ease 0.45s, -webkit-transform 0.4s cubic-bezier(0.87, -0.41, 0.19, 1.44) 0.35s;
  transition: opacity 0.3s ease 0.45s, -webkit-transform 0.4s cubic-bezier(0.87, -0.41, 0.19, 1.44) 0.35s;
  transition: transform 0.4s cubic-bezier(0.87, -0.41, 0.19, 1.44) 0.35s, opacity 0.3s ease 0.45s;
  transition: transform 0.4s cubic-bezier(0.87, -0.41, 0.19, 1.44) 0.35s, opacity 0.3s ease 0.45s, -webkit-transform 0.4s cubic-bezier(0.87, -0.41, 0.19, 1.44) 0.35s;
}

@-webkit-keyframes shake {
  10%, 90% {
    -webkit-transform: translate3d(-1px, 0, 0);
            transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    -webkit-transform: translate3d(2px, 0, 0);
            transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    -webkit-transform: translate3d(-4px, 0, 0);
            transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    -webkit-transform: translate3d(4px, 0, 0);
            transform: translate3d(4px, 0, 0);
  }
}

@keyframes shake {
  10%, 90% {
    -webkit-transform: translate3d(-1px, 0, 0);
            transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    -webkit-transform: translate3d(2px, 0, 0);
            transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    -webkit-transform: translate3d(-4px, 0, 0);
            transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    -webkit-transform: translate3d(4px, 0, 0);
            transform: translate3d(4px, 0, 0);
  }
}


.hero {
  max-width: 100vh!important;
  max-height: 100vh!important;
  width: 100%;
  height:auto;
  position: relative;
  left: 0;
  right: 0;
  margin: auto;
 

  
}

.hero {
     padding-bottom: 20px;
    display: table;
    margin: auto!important;
    text-align: center;
 

  
}

.hero a {
    text-decoration: none;
	Color:white;
 

  
}

.hero img {
  max-width: 90vh;
  max-height: 90vh;
   width: 100%; 
  height:100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
   margin: auto;
  


}

.hero #full {
  max-height: 80vh!important;
      display: table!important;
    margin: auto!important;
	    width: auto;
  


}

.hero .point0x {
  display: table;
  margin-top: 10px;
  margin-bottom: 50px;
  margin-right: auto;
  margin-left: auto;
   color:white;
  text-decoration: none;
  transition: 0.35s;
  transition-delay: 0.25s;
  animation: blink 0.9s infinite linear alternate;
  border-radius: 100%;
}

.hero .point0 {
  display: table;
  margin-top: 10px;
  margin-bottom: 50px;
  margin-right: auto;
  margin-left: auto;
   
  height: 30px;
  width: 30px;
  background: rgba(0, 0, 0, 1.0);
  border-radius: 290px;
  text-decoration: none;
  transition: 0.35s;
  transition-delay: 0.25s;
  animation: blink 0.9s infinite linear alternate;
  border-radius: 100%;
}

.hero .pointx {
  position: absolute;
  color: white!important;
  text-decoration: none;
  transition: 0.35s;
  transition-delay: 0.25s;
  animation: blink 0.9s infinite linear alternate;
  border-radius: 100%;
}

.hero .point {
  position: absolute;
  height: 30px;
  width: 30px;
  background: rgba(0, 0, 0, 1.0);
  border-radius: 290px;
  text-decoration: none;
  transition: 0.35s;
  transition-delay: 0.25s;
  animation: blink 0.9s infinite linear alternate;
  border-radius: 100%;
}
.hero .point span {
  position: absolute;
  min-width: 80px;
  padding: 7px;
  color: #fff;
  display: block;
  text-align: center;
  transform: translateX(-30%) translateY(-90%) scale(1);
  font-size: 12px;
  transition: 0.45s;
  background: #000a;
  border-radius: 3px;
  transition-delay: 0s;
  opacity: 0;
}




.button:hover {
  transform: scale(1.5);
  transition-delay: 0s;
  animation: blink 0s;
  opacity: 1;
}

.button:hover span {
  opacity: 1;
  transform: translateX(-30%) translateY(-130%) scale(1);
  transition-delay: 0.25s;
}


.hero .point:hover {
  transform: scale(1.5);
  transition-delay: 0s;
  animation: blink 0s;
  opacity: 1;
}
.hero .point:hover span {
  opacity: 1;
  transform: translateX(-30%) translateY(-130%) scale(1);
  transition-delay: 0.25s;
}



.hero .p0 {
  top: 95%;
  left: 32%;
}

.hero .p0chef {
  top: 95%;
  left: 39%;
}

.hero .p0driver {
  top: 95%;
  left: 39%;
}

.hero .p0biker {
  top: 95%;
  left: 39%;
}

.hero .p002 {
  top: 105%;
  left: 35%;
}

.hero .p003 {
vertical-align: middle;
    display: table-cell;
    align-items: center;
    width: 100%;
}


.hero .p0x {
  top: 110%;
  left: 50%;
}

.hero .p0xx {
  top: 100%;
  left: 50%;
}

.hero .pt {
  top: 100%;
  left: 45%;
}



.hero .p02 {
  top: 5%;
  left: 50%;
}

.video-wrapper {
  /*  Place your YouTube iframe embed code within .video-wrapper. Padding-bottom is set to 56.25% to maintain a 16:9 ratio for 720p, 1080p, etc. For different aspect ratios use this equation to calculate your padding-bottom: 720 Height / 1280 Width = .5625 Ratio, or 56.20% */
 position:   relative;
  width:      100%;
  height: 0;
  padding-top:   56.25%; 
   iframe {
    /* Make the iframe match .video-wrapper's size */
    background:url('http://placehold.it/1280x720/000/fff') pink;
    position: absolute;
    width: 100%;
    height: 100%
  }
}
   

.hero .p1 {
  top: 80%;
  left: 55%;
}
.hero .p2 {
  top: 55%;
  left: 30%;
}
.hero .p22 {
  top: 60%;
  left: 80%;
}
.hero .p3 {
  top: 14%;
  left: 63%;
}

.hero .p4 {
  top: 60%;
  left: 23%;
}

.hero .p5 {
  top: 40%;
  left: 23%;
}

@keyframes blink {
  0% {
    opacity: 0.45;
  }
  100% {
    opacity: 1;
  }
}

/*.fade{
 
    opacity:1;
}

#slideSource {
  opacity: 1;
  transition: opacity 0.5s; 
}

#slideSource.fade {
  opacity: 0;
}*/

.elementToFadeInAndOut {
    animation: fadeOut 0.5s linear;
}

@keyframes fadeOut {
 0% { opacity:1; }
 50% { opacity:0; } 
 100% { opacity:0; } 
}

.textfadein
{
	opacity:0;
}



#textfadein {

    animation: fadein 2s forwards;
    -moz-animation: fadein 2s forwards; /* Firefox */
    -webkit-animation: fadein 2s forwards; /* Safari and Chrome */
    -o-animation: fadein 2s forwards; /* Opera */
	animation-delay: 1s;

}
@keyframes textfadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-moz-keyframes textfadein { /* Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-webkit-keyframes textfadein { /* Safari and Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-o-keyframes textfadein { /* Opera */
    from {
        opacity:0;
    }
    to {
        opacity: 1;
    }
}


#fadein {

    animation: fadein 2s;
    -moz-animation: fadein 2s; /* Firefox */
    -webkit-animation: fadein 2s; /* Safari and Chrome */
    -o-animation: fadein 2s; /* Opera */
}
@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-moz-keyframes fadein { /* Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-o-keyframes fadein { /* Opera */
    from {
        opacity:0;
    }
    to {
        opacity: 1;
    }
}


.wrong {
  animation: wrongPass 2s ease-out infinite;

}

@keyframes wrongPass {
  0% {
    color: white;
  }
  10% {
    color: white;
  }
  20% {
    color: white;
  }
  30% {
    color: black;
  }
  40% {
    color: white;
  }
  50% {
    color: black;
  }
  60% {
    color: white;
  }
  70% {
    color: black;
  }
  80% {
    color: white;
  }
  90% {
    color: black;
  }
  100% {
    color: white;
  }
}

@media (max-width: 660px) {
.formout{
transform: scale(0.7);
	
}

body {font-size:1em;}
.hero{margin-top:50px!important;}

#password{
	
	max-width:100%
}

}

