* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  user-select: none;
  font-family: "Roboto Mono", monospace;
}

body {
  overflow: hidden;
  background-image: linear-gradient(to bottom, #000, #00ff00, #006f00);
}

.shadow {
  background-color: #000000;
  background-image: url(1.png);
  background-position: center;
  background-size: 120px 120px;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  vertical-align: baseline;
  transition: 1s;
}

.enabled{
  background-color: #00000000;
  transition: 0.1s;
}

.mform {
  margin-top: 100px;
  width:330px;
  height: 380px;
  border-radius: 6px;
  background-color: #222;
  box-shadow: 0 0 50px #000;
  display: flex; 
  flex-direction: column;
  align-items: center;
}

.top {
  margin: 40px 0px 15px 0px;
  color: #007e00;
  font-size: 36px;
  font-weight: 900;
  transition: 1s;
}

.top:hover {
  text-shadow: 0 0 3px #00ff00;
  cursor: pointer;
}

.enabled2 {
  transition: 0.1s;
  text-shadow: 0 0 10px #00ff00;
  color: #00ff00;
}

.enabled2:hover {
  text-shadow: 0 0 10px #00ff00;
}

.input {
  color: #ddd0;
  font-size: 18px;
  font-weight: 700;
  border-radius: 4px;
  margin-top: 25px;
  outline: none;
  border: none;
  background-color: #464646;
  width: 90%;
  height: 45px;
  padding: 0px 10px;
  transition: 1s;
}

.inputen {
  color:#dddf;
}

.input::placeholder {
  color: #9990;
  font-size: 15px;
  transition: 1s;
}

.inputen::placeholder {
  color:#999;
}

.input:hover::placeholder {
  padding-left: 15px;
}

.oth {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  width: 90%;
}

.othw1 {
  color: #ddd;
  font-size: 15px;
  font-weight: 700;
  font-style:normal;
}

.othw2 {
  color: #007f00;
  font-size: 15px;
  font-weight: 700;
  font-style:normal;
  transition: 1s;
}

.othw2en {
  color: #00ef00;
}

.logbtn {
  text-align: center;
  border-radius: 4px;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 20px;
  color: #000;
  background-color: #555;
  margin-top: 20px;
  padding: 11px 0px;
  width: 90%;
  transition: 1s;
}

.logbtnen {
  background-color: #00ef00;
  transition: 0.2s;
}

.logbtn:hover {
  background-color: #555;
  cursor: pointer;
}

.logbtnen:hover {
  background-color: #00bf00;
  cursor: pointer;
}