* {
    padding: 0;
    margin: 0;
    font-family: "DM Sans", sans-serif;
    box-sizing: border-box;

  }

  body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: rgb(255, 255, 255);

  }

  .container{
    min-width: 420px;
    color: rgb(0, 0, 0);
    border-radius: 10px;
    
  }

  .container img{
    height: 50px;
    width: 50px;
    margin-left: 43%;
    margin-bottom: 30px;

  }

  .container h1{
    font-size: 36px;
    text-align: center;

  }

  .container p{
    font-size: 20px;
    text-align: center;
    margin-top: 10px;
  }

  .container .input-text{
    width: 100%;
    position: relative;
    height: 20px;
    margin: 30px 0;

  }

  .input-text input{
    width: 100%;
    height: 100%;
    background: transparent;
    outline: none;
    border: 2px solid rgb(0, 0, 0); 
    border-radius: 40px;
    font-size: 18px;
    padding: 20px 45px 20px 20px;
    color: rgb(0, 0, 0);

  }


  .input-text input::placeholder{
    color: rgb(0, 0, 0);

  }

  .container .btn{
    width: 100%;
    height: 45px;
    background: #6a0dad;
    border: none;
    outline: none;
    border-radius: 45px;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 30px;
  }

  .btn:hover {
    background: #5a0ca8;
    cursor: pointer;
}