::selection{
    color: #ffffff;
    background-color: #31285C;
   }
   
   *{
    padding:0;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    box-sizing: border-box;
    text-decoration: none;
   }
   
   a{
    color: #31285C;
   }
   
   
   
   body{
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #F0F0F0;
    padding-top: 20px;
   }
   
   .wrapper{
    width: 400px;
    min-height:100px;
    background-color: #FFFFFF;
    border-radius: 5px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.05);
    padding: 30px;
   }
   
   .input-field{
    width: 100%;
    height: 45px;
    border: none;
    padding: 10px;
    background-color: #eeeeee;
    color: gray;
    outline: none;
    font-size: 15px;
    margin-bottom: 20px;
    transition: .5s;
    border-radius: 5px;
   }
   
   
   
   
   .heading{
    color: #3B3663;
    margin-bottom: 20px;
   }
   
   .heading p{ 
    color: #AAA8BB;
   }
   
   .heading h2{
    font-size: 30px;
    color: #4D61FC;
   } 
   
   label{
    color: #AAA8BB;
    font-weight: 400;
   }
   
   .button{
    width: 100%;
    height: 45px;
    border: none;
    color: #FFFFFF;
    background-color: #4D61FC;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 500;
    transition: 0.3s;
   }
   button a{
    color: #ffffff;
   }
   
   button:hover{
    background-color: #31283B;
   }
   
   
   .row{
    padding-top: 1%;
   }
   


   