body{
  background: #191919;
}
.leafimg{
  animation: none;
}
.box{
  margin: 110px 0 170px 0;  
  text-align: center;
}
.boxtwo{
  margin: 80px 0;
}
.box h1{
  color: #46db46;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 25px;
  margin: 40px 0;
}
.box input{
  border:0;
  background-color: white;
  display: block;
  margin: 25px auto;
  text-align: center;
  border: 2px solid #f0ad4e ;
  padding: 12px 10px;
  width: 280px;
  outline: none;
color:black;
  font-size: 14px;
  border-radius: 30px;
  transition: 0.25s;
}
.box input:focus{
  width: 350px;
  border-color:red;
}

.box input[type = "submit"]{
  width: 130px;
  border:0;
  background: black;
  display: block;
  margin: 35px auto;
  text-align: center;
  border: 2px solid #0d0d0d;
  padding: 14px 40px;
  outline: none;
  color: #F0DC2F;
  border-radius: 24px;
  transition: 0.25s;
  cursor: pointer;
}
.box input[type = "textarea"]{
  width: 350px;
height: 150px;
background-color: white;
color:black;
}
.box input[type = "submit"]:hover{

transform:scale(1.2);
}
.boxtwo input[type = "submit"]{
  margin: 40px auto 100px;
}
.box a{
  text-decoration: none;
  color: white;
  font-size: 14px;
  margin: 20px 40px;
}
.box a:hover{
  color: rgb(220,220,220);
}

@media (max-width:576px){
  .box input[type = "text"]:focus,.box input[type = "password"]:focus{
    width: 320px;
  }
}