.center{
  position:absolute;
  margin: auto;
  top:0;
  left:0;
  right:0;
  bottom:0;


  height: 430px;
  width: 600px;
  background-color: white;
  border-color:  grey;
  border-style: solid;
  border-width: thick;
  border-radius: 10px;

}
.button{
  width:500px;
  border-style: solid;
  border-width: 2px;
  border-radius: 5px;
  margin-top: 20px;
  border-color: grey;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
}

.button:hover{
  border-color: #73d2de;
}
.button img{
  height: 60px;

  float: left;
}
.button p{
  font-size: 25px;
  margin-top: 8px;


}
body{
  background:#73d2de;
}
input{
  width:500px;
  border-style: solid;
  border-width: 2px;
  border-radius: 5px;
  margin-top: 20px;
  border-color: grey;
  height: 60px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  font-size: 40px;
  padding-left: 50px;
  padding-right: 25px;
  font-family: 'Ubuntu', sans-serif;
  outline-color:#73d2de;
}

input:focus{
  border-color: #73d2de !important ;
}
.errspan {
        float: left;
        margin-left: 55px;
        margin-top: -50px;
        position: relative;
        z-index: 2;
        font-size: 40px;
        color: grey;

    }

@media(max-width:600px) {
  .center{
    width:400px;
  }
  input{
    width:300px;
  }

  }
