/* Import Google Font - Poppins */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*::selection {
  background-color: gray;
}

*::-moz-selection {
  background: gray;
}


* {
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
:root{
  font-family: Whitney, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  cursor:default;
}

body{
  display: flex;
  padding: 0 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  /* background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
  background-image: url(social-doodle-seamless_1284-1275.jpg);
  background-size: contain;

}
.MainContainer{
  max-width: 500px;
  background: #fff;
  border-radius: 7px;
  padding: 20px 25px 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.377);
}
.heading{
  font-size: 27px;
  font-weight: 500;
}
.Description{
  margin-top: 5px;
  font-size: 18px;
  color: #474747;
}
form{
  margin: 20px 0 27px;
 
}
form input{
  width: 100%;
  height: 50px;
  outline: none;
  padding: 0 17px;
  font-size: 19px;
  border-radius: 5px;
  border: 1px solid #b3b2b2;
  transition: 0.1s ease;
 
}
form input::placeholder{
  color: #b3b2b2;
}
form input:focus{
  box-shadow: 0 3px 6px rgba(0,0,0,0.13);
}
.download-button{
  width: 100%;
  border: none;
  opacity: 0.7;
  outline: none;
  color: #fff;
  cursor: pointer;
  font-size: 17px;
  margin-top: 20px;
  padding: 15px 0;
  border-radius: 5px;
  pointer-events: none;
  background-image: linear-gradient(to top, #0ba360 0%, #3cba92 100%);
  cursor:pointer;
  
}
form input:valid ~ .download-button{
  opacity: 1;
  pointer-events: auto;
}