*{
  margin: 0;
  padding: 0;
}

body{
  background: linear-gradient(#021b79,transparent), url(../Backround.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: auto;
  font-family: sans-serif;
}

.container{
  max-width: 800px;
  height: auto;
  background: #fff;
  margin: 50px auto;
  box-sizing: border-box;
  padding: 40px;
}

p{
  text-align: center;
  letter-spacing: 1px;
  font-size: 45px;
  margin-bottom: 20px;
  background: -webkit-linear-gradient(left, #0575e6, #021b79);
  background: -o-linear-gradient(left, #0575e6, #021b79);
  background: linear-gradient(to right, #0575e6, #021b79);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.input,
.msg .area{
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  margin-bottom: 25px;
  border: 2px solid #white;
  font-size: 14px;
  border-radius: 5px;
  outline: none;
  transition: all 0.5s;
}

.Login .input{
  width: 48%;
  float: left;
  margin-right: 4%;
}

.Login .input:last-child{
  margin-right: 0%;
}

.msg .area{
  height: 200px;
}

.input:focus,
.msg .area:focus{
  border: 2px solid #0575e6
}

.submit{
  width: 100%;
  text-align: center;
}

.submit .btn{
  background: linear-gradient(to right, #0575e6, #021b79);
  padding: 12px 85px;
  font-size: 19px;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 5px;

}

::-webkit-input-placeholder{
  font-family: sans-serif;
  color: #0575e6;
}
