/* Sticky Login Button Styles */
.sticky-login-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.sticky-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0B4C7A;
    color: #ffffff;
    padding: 12px 12px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 16px;
    overflow: hidden;
    width: 50px;
    height: 50px;
    border: none;
    cursor: pointer;
}

.sticky-login-btn i {
    font-size: 24px;
    transition: all 0.3s ease;
    margin: 0;
    min-width: 24px;
    text-align: center;
}

.sticky-login-btn span {
    white-space: nowrap;
    opacity: 0;
    width: 0;
    transition: all 0.3s ease;
    overflow: hidden;
    margin-left: 0;
}

.sticky-login-btn:hover {
    background-color: #0d5a8f;
    width: auto;
    padding: 12px 20px;
}

.sticky-login-btn:hover i {
    margin-right: 10px;
}

.sticky-login-btn:hover span {
    opacity: 1;
    width: auto;
    margin-left: 8px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .sticky-login-container {
        bottom: 20px;
        right: 20px;
    }
    
    .sticky-login-btn {
        width: 46px;
        height: 46px;
        padding: 10px;
    }
    
    .sticky-login-btn i {
        font-size: 22px;
    }
}
