/* layout utilities starts  */
.d-flex
{
    display: flex;
}
.d-flex-col
{
    display: flex;
    flex-direction: column;
}
.justify-content-center
{
    justify-content: center;
}
.align-items-center
{
    align-items: center;
}
.row
{
    display: flex;
    justify-content: center;
    align-items: center;
}
/* layout utilities ends*/
/* button  utilities starts*/
.btn
{
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 5px;

}
.btn-success
{
    background-color: #28a745;
    color: white;
}
/* button utilities ends*/
/* text utilities start */
.text-white
{
    color: #ffff;
}
.text-success
{
    color: #28a745;
}
.text-muted
{
    color: #6c757d;
}
/* text utilities ends */
/* width-height utilities starts */
.w-100
{
    width:100%
}
/* width-height utilities ends */