/* large screens */
@media (min-width: 1600px)
{

}
/* Desktops/Laptops */
@media (max-width: 1500px)
{
}
/* Desktops/Laptops */
@media (max-width: 1200px)
{


}

/* Laptops */
@media (max-width: 1024px)
{

}

/* Tablets */
@media (max-width: 768px)
{
    .tab-100
    {
        width: 100%;
    }
    .dashboard::before
    {
        bottom: 0;
        height: 50%;
        top: auto;
    }
    .dashboard::after
    {
        bottom: 0;
        height: 50%;
        top: auto;
    }
}

/* mobile */
@media (max-width: 576px)
{

    .dashboard::before
    {
        bottom: 0;
        height: 50%;
        top: auto;
    }
    .dashboard::after
    {
        bottom: 0;
        height: 50%;
        top: auto;
    }
    .signup-heading h2
    {
        font-size: 35px;
    }
    .signup-heading p
    {
        font-size: 15px;
    }
    .dashboard-img
    {
        display: none;
    }

}