﻿/* Computer screens */
@media only screen and (min-width: 992px) {
    .loginCustomLogo {
        width: 400px; /* Example width for computer screens */
    }
}

/* Tablet screens */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .loginCustomLogo {
        width: 300px;
    }
}

/* Mobile screens */
@media only screen and (max-width: 767px) {
    .loginCustomLogo {
        width: 250px; /* Example width for mobile screens */
    }
}