html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}
body{line-height:1}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
nav ul{list-style:none}
blockquote,q{quotes:none}
blockquote:before,blockquote:after,q:before,q:after{content:none}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;text-decoration:none}
mark{background-color:#ff9;color:linear-gradient(102deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%)#000;font-style:italic;font-weight:bold}
del{text-decoration:line-through}
abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}
table{border-collapse:collapse;border-spacing:0}
hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}
input,select{vertical-align:middle}
li{list-style:none}

html,body{ 
	width:100%;
	height:100%;
	background:linear-gradient(102deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);
}

html{
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body{
  font:normal 100% 'Open Sans';
}

canvas{
  display:block;
  vertical-align:bottom;
}


/* ---- stats.js ---- */

.count-particles{
  background: linear-gradient(102deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13E8E9;
  font-size: .8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: 'Open Sans';
  font-weight: bold;
}

.js-count-particles{
  font-size: 1.1em;
}

#stats,
.count-particles{
  -webkit-user-select: none;
  margin-top: 5px;
  margin-left: 5px;
}

#stats{
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}

.count-particles{
  border-radius: 0 0 3px 3px;
}


/* ---- particles.js container ---- */

#particles-js{
  width: 100%;
  height: 100%;
  background: linear-gradient(102deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);
  background-color: linear-gradient(102deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.container{
  position: absolute;
  padding: 25px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  max-width: 400px;
  width: 90%;
  background-color: rgba(7, 14, 116, 0.89);
  border-radius: 15px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0);
}


.container form{
  display: flex;
  padding: 10px;
  justify-content: center;
  flex-direction: column;
}

.container p{
  font-size: 40px;
  /* margin: 2px; */
  padding: 10px;
  color: white;
}

img {
  padding-top: 10px;
  width: 50%;
  max-width: 200px; /* Set a max-width to prevent it from becoming too large on large screens */
}


/* Bordered form */
/* form {
  border: 3px solid #f1f1f1;
} */

/* Full-width inputs */
/* input[type=email], input[type=password] {
  width: 115%;
  padding: 7px 11px;
  margin: 8px 0;
  display: inline-block;
  border-radius: 15px;
  box-sizing: border-box;
} */
  /* border: 1px solid #ccc;*/


  input[type=email], input[type=password] {
    display: block;
    margin: 4px 5px;
    width: 100%; /* Change to 100% to make it fill the container width */
    padding: 10px;
    font-size: 100%;
    font-weight: 400;
    line-height: 1.5;
    color: rgb(33, 37, 41);
    background-color: rgb(255, 255, 255);
    background-clip: padding-box;
    border: 0;
    appearance: none;
    border-radius: 0.7rem;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
  }
  

/* Set a style for all buttons */
button {
  display: block;
  border: 0;
  outline: 0;
  font-size: 100%;
  background-color: rgb(0, 72, 255);
  color: white;
  padding: 10px;
  margin: 9px 0; /* Remove horizontal margin */
  border-radius: 0.7rem;
  cursor: pointer;
  width: 100%; /* Change to 100% to make it fill the container width */
}


/* Add a hover effect for buttons */
button:hover {
  opacity: 1;
  transform: scale(1.07);
}

.glow-on-hover {
  width: 220px;
  height: 50px;
  border: none;
  outline: none;
  color: #fff;
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
}

.glow-on-hover:before {
  content: '';
  background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
  position: absolute;
  top: -2px;
  left:-2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity .3s ease-in-out;
  border-radius: 10px;
}

.glow-on-hover:active {
  color: #000
}

.glow-on-hover:active:after {
  background: transparent;
}

.glow-on-hover:hover:before {
  opacity: 1;
}

.glow-on-hover:after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #111;
  left: 0;
  top: 0;
  border-radius: 10px;
}

@keyframes glowing {
  0% { background-position: 0 0; }
  50% { background-position: 400% 0; }
  100% { background-position: 0 0; }
}