/*this styles are specially including in login register and forgot password page */

.top-right {
    position: fixed;
    top: 35px;
    right: 30px;
}
.button {
    background: #e9042b;
    color: white;
    border: none;
    padding: 5px 20px;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.3s ease;
}
.button:hover {
    background-color: #c40325;
}

.top-left{
    position: fixed;
    top: 22px;
    left: 25px;
}
.top-left img{
    height: 50px;
}
.hide-this-sec-mob{
    display: block;
}
/* For mobile devices (portrait and landscape) */
@media (max-width: 768px) {
    .hide-this-sec-mob{
        display: none !important;
    }
    .top-right {
        position: fixed;
        top: 26px;
        right: 10px;
    }
    .top-left{
        left: 10px;
        top: 15px;
    }
    .top-left img{
        height: 40px;
    }
    .button {
        padding: 7px 14px;
        font-size: 0.75rem;
    }
}