* {
  margin: 0;
  padding: 0;
  font-family: Poppins;
}

span {
  color: #777;
  font-size: 12px;
  bottom: 68px;
  position: absolute;
}

a {
  text-decoration: none;
  color: inherit;
}

h1 {
  display: inline-block;
}

.animation {
  animation: transitionin 1.2s;
}

.right{
  float: right;
}

.left{
  float: left;
}

.padding {
  padding-top: 100px;
}

.navbar {
  background: rgba(0,0,0,.4);
  position: absolute;
  top: 0;
  width: 100%;
}

.alcim {
  font-size: 14px;
  padding: 0px 0 13px;
  width: 100%;
  position: fixed;
  bottom:0;
}

.alcim p {
  height: 2px;
  padding-left: 5px;
  padding-right: 5px;
  margin: 15px 0;
}

.alcimbg {
  background: rgba(0,0,0,.4);
}

.hatter {
  background: linear-gradient(-45deg, #f1c40f, #f1c40f, #f39c12, #f39c12, #f1c40f, #f1c40f);
  background-size: 400% 400%;
  position: relative;
  animation: szineshatter 25s infinite;
  height: 100%;
  width: 100%;
  position: absolute;
}

.box {
  width: 380px;
  height: 480px;
  position: relative;
  margin: 6% auto;
  background: #fff;
  padding: 5px;
  overflow: hidden;
}

.btn-box {
  width: 220px;
  margin: 35px auto;
  position: relative;
  border-radius: 30px;
}

.input-group {
  top: 180px;
  position: absolute;
  width: 280px;
  transition: .5s;
}

.input-field {
  width: 100%;
  padding: 10px 0;
  margin: 5px 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-bottom: 1px solid #999;
  outline: none;
  background: transparent;
}

.submit-btn {
  width: 85%;
  padding: 10px 30px;
  cursor: pointer;
  display: block;
  margin: auto;
  background: #f1c40f;
  border: 0;
  outline: none;
  border-radius: 30px;
}

.check-box {
  margin: 30px 10px 30px 0;
}

#nev_error, #pass_error {
  font-size: 80%;
  color: red;
  display: none;
  padding-top: 0;
  padding-bottom: 10px;
}

#c1 {
  padding-right: 25px;
  padding-top: 7%;
  transition: transform 0.25s;
}

#c1:hover {
  transform: translateY(-5px);
}

#c2 {
  padding-left: 25px;
  max-width: 200px;
  padding-top: 1%;
}

#login {
  left: 50px;

}

#register {
  left: 450px;

}

#btn {
  top: 0;
  left: 0;
  position: absolute;
  width: 110px;
  height: 100%;
  border-radius: 30px;
  transition: .5s;
}

@keyframes transitionin {
  from {
    opacity: 0;
    transform: rotateX(-10deg);
  }

  to {
    opacity: 1;
    transform: rotateX(0);
  }
}

@keyframes szineshatter {
  0% {
    background-position: 0 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0 50%;
  }
}
