*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* background-color: aqua; */
}

body{
  background-color: #75aaeb;
  width: 100%;
  justify-content: center;
  text-align: center;
  margin-top: 4rem;
  
}
.container{
  width: 400px;
  padding: 25px 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 10px;
}


.container input{
  width: 100%;
  height: 50px;
  border: 1px solid #494ee0;
  outline: none;
  padding: 10px;
  margin: 10px 0 20px;
  border-radius: 5px;
  font-size: 15px;
  
}

.container button{
  background-color: rgb(121,82,179);
    color:white;
    border: none;
    height: 36px;
    width: 105px;
    border-radius: 3px;
    font-weight: bold;
    margin-left: 10px;
    cursor: pointer;
}

.container .dwnbtn{
  background-color: white;
    border-width: 1px;
    color: rgb(108,117,125);
    height: 36px;
    width: 105px;
    border-color:rgb(108,117,125) ;
    border-style: solid;
    font-weight: bold;
    border-radius: 3px;
    margin-left: 6px;
    cursor: pointer;
}
