*{
  margin:0;
  padding: 0;
}
body{
background: linear-gradient(90deg, rgba(233,233,240,1) 48%, rgba(227,241,241,1) 100%);
}


.login-title{
  background: linear-gradient(to right, #c21500, #ffc500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Acme', sans-serif;
  font-weight: bold;
}
#forgot{
  font-size: 14px;
}
.btn-grad {
  background: linear-gradient(to right, #c21500, #ffc500);
}

.btn-grad {
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  box-shadow: 0 0 20px #eee;
  border-radius: 10px;
  font-weight: bold;
}

.btn-grad:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
}
.main-div{
  height: 400px;
  width: 70%;
  background: white;
  margin: auto;
  border-radius: 20px;
  margin-top: 70px;
  margin-bottom: 70px;
}
.nav-heading{
    position:absolute;
    left:45%; 
}
#invalid{
  color: red;
  font-size: 14px;
}
input[type=email],input[type=text],input[type=password]{
  border: 1px solid #c21500;
}
input[type=text]:focus,input[type=password]:focus,input[type=email]:focus{
  border: 1px solid #ffc500;
  box-shadow: 0px 0px 5px #c21500 ;
}
@media screen and (max-width:770px) {
  .main-div{
    width: 80%!important;
  }
  .main-div h1{
    font-size: 25px  ;
  }
}
