
* {
  box-sizing: border-box ;
}

html {
  background: #000 ;
  background-size: cover ;
  font-size: 10px ;
  height: 100% ;
  overflow: hidden ;
  position: absolute ;
  /*text-align: center ;*/
  width: 100% ;
}

/* =========================================
Stark Industries Logo
========================================= */
#logo {
  animation: logo-entry 1s ease-in ;
  width: 500px ;
  margin: 0 auto ;
  position: relative ;
  z-index: 40 ;
}

h1.hogo {
  animation: text-glow 1s ease-out infinite alternate ;
  font-family: 'Ubuntu', sans-serif ;
  color: #00a4a2 ;
  font-size: 48px ;
  font-size: 4.8rem ;
  font-weight: bold ;
  position: absolute ;
  text-shadow: 0 0 10px #000, 0 0 20px #000, 0 0 30px #000, 0 0 40px #000, 0 0 50px #000, 0 0 60px #000, 0 0 70px #000 ;
  top: 40px ;
}
h1.hogo:before {
  animation: before-glow 1s ease-out infinite alternate ;
  border-left: 535px solid transparent ;
  border-bottom: 10px solid #00a4a2 ;
  content: ' ' ;
  height: 0 ;
  position: absolute ;
  right: -90px ;
  top: -10px ;
  width: 0 ;
}
h1.hogo:after {
  animation: after-glow 1s ease-out infinite alternate ;
  border-left: 100px solid transparent ;
  border-top: 16px solid #00a4a2 ;
  content: ' ' ;
  height: 0 ;
  position: absolute ;
  right: -100px ;
  top: 24px ;
  transform: rotate(-47deg) ;
  width: 0 ;
}

/* =========================================
Log in form
========================================= */
#fade-box {
  animation: input-entry 1s ease-in ;
  z-index: 4 ;
  width: 80%;
  margin:0 auto;

}

.stark-login  {
  animation: form-entry 1s ease-in-out ;
  background: #111 ;
  background: linear-gradient(#004746, #111111) ;
  border: 6px solid #00a4a2 ;
  box-shadow: 0 0 15px #00fffd ;
  border-radius: 5px ;
  display: inline-block ;
  height: 290px ;
  margin: 150px auto 0 ;
  position: relative ;
  z-index: 4000 ;
  width: 500px ;
  transition: 1s all ;
}
.stark-login form:hover {
  /*border: 6px solid #00fffd ;*/
  box-shadow: 0 0 25px #00fffd ;
  transition: 1s all ;
}
.stark-login input {
  background: #222 ;
  background: linear-gradient(#333333, #222222) ;
  border: 1px solid #444 ;
  border-radius: 5px ;
  box-shadow: 0 2px 0 #000 ;
  color: #888 ;
  display: block ;
  font-family: 'Cabin', helvetica, arial, sans-serif ;
  font-size: 13px ;
  font-size: 1.3rem ;
  height: 40px ;
  margin: 10px 0px ;
  padding: 0 10px ;
  text-shadow: 0 -1px 0 #000 ;

  width: 100%;
  /*width: 400px ;*/
}
.stark-login input:focus {
  animation: box-glow 1s ease-out infinite alternate ;
  background: #0B4252 ;
  background: linear-gradient(#333933, #222922) ;
  border-color: #00fffc ;
  box-shadow: 0 0 5px rgba(0, 255, 253, 0.2), inset 0 0 5px rgba(0, 255, 253, 0.1), 0 2px 0 #000 ;
  color: #efe ;
  outline: none ;
}
.stark-login input:invalid {
  border: 2px solid red ;
  box-shadow: 0 0 5px rgba(255, 0, 0, 0.2), inset 0 0 5px rgba(255, 0, 0, 0.1), 0 2px 0 #000 ;
}
.stark-login button {
  animation: input-entry 1s ease-in ;
  background: #222 ;
  background: linear-gradient(#333333, #222222) ;
  box-sizing: content-box ;
  border: 1px solid #444 ;
  border-left-color: #000 ;
  border-radius: 5px ;
  box-shadow: 0 2px 0 #000 ;
  color: #fff ;
  display: block ;
  font-family: 'Cabin', helvetica, arial, sans-serif ;
  font-size: 13px ;
  font-weight: 400 ;
  height: 40px ;
  line-height: 40px ;
  margin: 20px auto ;
  padding: 0 ;
  position: relative ;
  text-shadow: 0 -1px 0 #000 ;
  width: 100% ;
  transition: 1s all ;
}
.stark-login button:hover,
.stark-login button:focus {
  background: #0C6125 ;
  background: linear-gradient(#393939, #292929) ;
  color: #00fffc ;
  outline: none ;
  transition: 1s all ;
}
.stark-login button:active {
  background: #292929 ;
  background: linear-gradient(#393939, #292929) ;
  box-shadow: 0 1px 0 #000, inset 1px 0 1px #222 ;
  top: 1px ;
}

/* =========================================
Spinner
========================================= */
#circle1 {
  animation: circle1 4s linear infinite, circle-entry 6s ease-in-out ;
  background: #000 ;
  border-radius: 50% ;
  border: 10px solid #00a4a2 ;
  box-shadow: 0 0 0 2px black, 0 0 0 6px #00fffc ;
  height: 500px ;
  width: 500px ;
  position: absolute ;
  top: 20px ;
  left: 50% ;
  margin-left: -250px ;
  overflow: hidden ;
  opacity: 0.4 ;
  z-index: -3 ;
}

#inner-cirlce1 {
  background: #000 ;
  border-radius: 50% ;
  border: 36px solid #00fffc ;
  height: 460px ;
  width: 460px ;
  margin: 10px ;
}
#inner-cirlce1:before {
  content: ' ' ;
  width: 240px  ;
  height: 480px ;
  background: #000 ;
  position: absolute ;
  top: 0  ;
  left: 0 ;
}
#inner-cirlce1:after {
  content: ' ' ;
  width: 480px ;
  height: 240px ;
  background: #000 ;
  position: absolute ;
  top: 0 ;
  left: 0 ;
}

/* =========================================
Hexagon Mesh
========================================= */
.hexagons {
  animation: logo-entry 2s ease-in ;
  color: #000 ;
  font-size: 52px ;
  font-size: 5.1rem ;
  letter-spacing: -0.2em ;
  line-height: 0.7 ;
  position: absolute ;
  text-shadow: 0 0 6px #00fffc ;
  top: 310px ;
  width: 100%;
  transform: perspective(600px) rotateX(60deg) scale(1.4);
  z-index: -3;
}

/* =========================================
Animation Keyframes
========================================= */
@keyframes logo-entry {
  0% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes circle-entry {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 0.4;
  }
}
@keyframes input-entry {
  0% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes form-entry {
  0% {
    height: 0;
    width: 0;
    opacity: 0;
    padding: 0;
  }
  20% {
    height: 0;
    border: 1px solid #00a4a2;
    width: 0;
    opacity: 0;
    padding: 0;
  }
  40% {
    width: 0;
    height: 220px;
    border: 6px solid #00a4a2;
    opacity: 1;
    padding: 0;
  }
  100% {
    height: 220px;
    width: 500px;
  }
}
@keyframes box-glow {
  0% {
    border-color: #00b8b6;
    box-shadow: 0 0 5px rgba(0, 255, 253, 0.2), inset 0 0 5px rgba(0, 255, 253, 0.1), 0 2px 0 #000;
  }
  100% {
    border-color: #00fffc;
    box-shadow: 0 0 20px rgba(0, 255, 253, 0.6), inset 0 0 10px rgba(0, 255, 253, 0.4), 0 2px 0 #000;
  }
}
@keyframes text-glow {
  0% {
    color: #00a4a2;
    text-shadow: 0 0 10px #000, 0 0 20px #000, 0 0 30px #000, 0 0 40px #000, 0 0 50px #000, 0 0 60px #000, 0 0 70px #000;
  }
  100% {
    color: #00fffc;
    text-shadow: 0 0 20px rgba(0, 255, 253, 0.6), 0 0 10px rgba(0, 255, 253, 0.4), 0 2px 0 #000;
  }
}
@keyframes before-glow {
  0% {
    border-bottom: 10px solid #00a4a2;
  }
  100% {
    border-bottom: 10px solid #00fffc;
  }
}
@keyframes after-glow {
  0% {
    border-top: 16px solid #00a4a2;
  }
  100% {
    border-top: 16px solid #00fffc;
  }
}
@keyframes circle1 {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


.toast-title{font-weight:700}.toast-message{-ms-word-wrap:break-word;word-wrap:break-word}.toast-message a,.toast-message label{color:#FFF}.toast-message a:hover{color:#CCC;text-decoration:none}.toast-close-button{position:relative;right:-.3em;top:-.3em;float:right;font-size:20px;font-weight:700;color:#FFF;-webkit-text-shadow:0 1px 0 #fff;text-shadow:0 1px 0 #fff;opacity:.8;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=80);filter:alpha(opacity=80);line-height:1}.toast-close-button:focus,.toast-close-button:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.4;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=40);filter:alpha(opacity=40)}.rtl .toast-close-button{left:-.3em;float:left;right:.3em}button.toast-close-button{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.toast-top-center{top:0;right:0;width:100%}.toast-bottom-center{bottom:0;right:0;width:100%}.toast-top-full-width{top:0;right:0;width:100%}.toast-bottom-full-width{bottom:0;right:0;width:100%}.toast-top-left{top:12px;left:12px}.toast-top-right{top:12px;right:12px}.toast-bottom-right{right:12px;bottom:12px}.toast-bottom-left{bottom:12px;left:12px}#toast-container{position:fixed;z-index:999999;pointer-events:none}#toast-container *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}#toast-container>div{position:relative;pointer-events:auto;overflow:hidden;margin:0 0 6px;padding:15px 15px 15px 50px;width:300px;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background-position:15px center;background-repeat:no-repeat;-moz-box-shadow:0 0 12px #999;-webkit-box-shadow:0 0 12px #999;box-shadow:0 0 12px #999;color:#FFF;opacity:.8;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=80);filter:alpha(opacity=80)}#toast-container>div.rtl{direction:rtl;padding:15px 50px 15px 15px;background-position:right 15px center}#toast-container>div:hover{-moz-box-shadow:0 0 12px #000;-webkit-box-shadow:0 0 12px #000;box-shadow:0 0 12px #000;opacity:1;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);filter:alpha(opacity=100);cursor:pointer}#toast-container>.toast-info{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=)!important}#toast-container>.toast-error{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=)!important}#toast-container>.toast-success{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==)!important}#toast-container>.toast-warning{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=)!important}#toast-container.toast-bottom-center>div,#toast-container.toast-top-center>div{width:300px;margin-left:auto;margin-right:auto}#toast-container.toast-bottom-full-width>div,#toast-container.toast-top-full-width>div{width:96%;margin-left:auto;margin-right:auto}.toast{background-color:#030303}.toast-success{background-color:#51A351}.toast-error{background-color:#BD362F}.toast-info{background-color:#2F96B4}.toast-warning{background-color:#F89406}.toast-progress{position:absolute;left:0;bottom:0;height:4px;background-color:#000;opacity:.4;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=40);filter:alpha(opacity=40)}@media all and (max-width:240px){#toast-container>div{padding:8px 8px 8px 50px;width:11em}#toast-container>div.rtl{padding:8px 50px 8px 8px}#toast-container .toast-close-button{right:-.2em;top:-.2em}#toast-container .rtl .toast-close-button{left:-.2em;right:.2em}}@media all and (min-width:241px) and (max-width:480px){#toast-container>div{padding:8px 8px 8px 50px;width:18em}#toast-container>div.rtl{padding:8px 50px 8px 8px}#toast-container .toast-close-button{right:-.2em;top:-.2em}#toast-container .rtl .toast-close-button{left:-.2em;right:.2em}}@media all and (min-width:481px) and (max-width:768px){#toast-container>div{padding:15px 15px 15px 50px;width:25em}#toast-container>div.rtl{padding:15px 50px 15px 15px}}

#message{
  /*text-align: right;*/
  /*padding: 0px 0px 20px  0px !important;*/

  color:  #00fffd;
  cursor: pointer;
}
.message_span{
  float: left;
  width: 30%;
}
.login_msg{
  font-weight: 800;
  color: #00fffd;
  font-size: 22px;

}

.moblie input{
  width: 70% !important;
}

.getCode{
  width: 30%;
  height: 60px;
  line-height: 60px;
  color: #00fffd;
  cursor: pointer;

}

/*dd*/
.clearfix:after{
  content:"";
  display:block;
  visibility:hidden;
  clear:both;
}