@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-family: 'poppins';
  /* background-image: linear-gradient(to right, rgb(43, 2, 123) ,rgb(29, 28, 28),rgb(79, 4, 4)); */
  background-image: linear-gradient(to right, rgb(162 44 44) , rgb(36 16 149));
  /* background-color: #0d0536; */
  color: #fff;
  line-height: 1.8;
}

a{
  text-decoration: none;
}

#container{
  margin: 30px auto;
  max-width: 615px;
  padding: 20px;
}

.form-wrap{
  background-color: #fff;
  padding: 15px 25px;
  color: white;
  border-top: 10px solid #3f81e4;
  border-radius: 15px;
}
.form-wrap:hover{
    border-radius: 8px;
    /* border: 5px solid brown; */
    background: repeating-linear-gradient(45deg, black, transparent 100px);
}

.form-wrap h1,
.form-wrap p{
  text-align: center;
  font-family: cursive;
}

.form-wrap .form-group{
  margin-top: 15px;
}

.form-wrap .form-group label{
  display: block;
  color: #666;
}

.form-wrap .form-group input{
  width: 100%;
  padding: 10px;
  border: #ddd 1px solid;
  border-radius: 5px;
}

.form-wrap button{
  display: block;
  width: 50%;
  padding: 10px;
  margin-top: 20px;
  /* background-color: #49c1a2; */
  /* background-image: linear-gradient(to right, rgb(12, 3, 65),rgb(118, 9, 9)); */
  color: black;
  cursor: pointer;
  border: 1px solid #49c1a2;
  font-family: 'poppins';
  font-size: 15px;
  transition: 1s;
  margin-left: 122px;
}

.form-wrap button:hover{
  background-color: #26cbb0;
  transition: 1s;
}

.form-wrap .bottom-text{
  font-size: 13px;
  margin-top: 20px;
}
.btn_signup{
    border: 1px solid #ce1653;
    background-color: white;
}

footer {
  text-align: center;
  margin-top: 10px;
  color: #333;
}

footer a {
  color:#49c1a2
}