*{
    padding:0;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    box-sizing: border-box;
    text-decoration: none;
   }
.signin{
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #F0F0F0;
    padding-top: 20px;
   }
   


.login-form{
    width: 320px;
    min-height:100px;
    background-color: #FFFFFF;
    border-radius: 5px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.05);
    padding: 30px;
   }


   .login-form input{
    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;
   }

   .login-form button{
    width: 100%;
    height: 45px;
    border: none;
    color: #FFFFFF;
    background-color: #ff0202;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 500;
    transition: 0.3s;
   }
   
   .login-form button:hover{
    background-color: #ff0202ca;
   }

   .heading{
    color: #ff0202;
    margin-bottom: 20px;
   }
   
   .heading p{ 
    color: #AAA8BB;
   }