body {
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  height: 100vh;
  font-family: sans-serif;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}
.color{
		background-color: #f5f5f5;
	}
@media screen and (max-width: 600px) {
  body {
    background-size: cover;
    position: fixed;
  }
}

#particles-js {
  height: 100%;
}

.loginBox {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  min-height: 200px;
  background: #ffffff;
  border-radius: 10px;
  padding: 40px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px #ccc;
}

.user {
  margin: 0 auto;
  display: block;
  margin-bottom: 20px;
}

h3 {
  margin: 0;
  padding: 0 0 20px;
  color: black;
  text-align: center;
}

.loginBox input {
  width: 100%;
  margin-bottom: 20px;
}

.loginBox input[type="text"],
.loginBox input[type="password"] {
	width: 100%;
    border: none;
    border-bottom: 2px solid #262626;
    outline: none;
    height: 40px;
    color: #262626;
    background: transparent;
    font-size: 16px;
    padding-left: 20px;
    box-sizing: border-box;
	transition: border-color 0.3s, color 0.3s;
}
.inputBox input[type="text"]:focus::placeholder,
.inputBox input[type="password"]:focus::placeholder {
    transform: translateY(-16px);
    font-size: 12px;
    transition: transform 0.3s ease-in-out, font-size 0.3s ease-in-out;
}

.loginBox input[type="text"]:hover,
.loginBox input[type="password"]:hover {
  border-color: #0275d8;
  color: #444444;
  /*box-shadow: 0 0 5px rgba(0, 255, 0, 0.3), 0 0 10px rgba(0, 255, 0, 0.2),
    0 0 15px rgba(0, 255, 0, 0.1), 0 2px 0 black;*/
}

.loginBox input[type="text"]:focus,
.loginBox input[type="password"]:focus {
  background-color: #ffffff;
      border-color: #0275d8;
      box-shadow: none;
      color: #444444;
}

.inputBox {
  position: relative;
}

.inputBox span {
  position: absolute;
  top: 10px;
  color: #262626;
}

.loginBox input[type="submit"] {
  border: none;
  outline: none;
  height: 40px;
  font-size: 16px;
  background-color: #007bff;
  color: #fff;
  border-radius: 20px;
  cursor: pointer;
}

.loginBox a {
  color: #262626;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  display: block;
}
a:hover {
  color: #00ffff;
}
p {
  color: #0000ff;
}
